mirror of
https://github.com/XFox111/PasswordGeneratorExtension.git
synced 2026-04-22 08:08:01 +03:00
3ecb6c4a31
- Migrated to WXT - Migrated to NPM - Added Insert & copy action - Added ESLint
36 lines
761 B
TypeScript
36 lines
761 B
TypeScript
import { BrandVariants, Theme, createDarkTheme, createLightTheme } from "@fluentui/react-components";
|
|
|
|
const bmcBrandRamp: BrandVariants =
|
|
{
|
|
"10": "#050201",
|
|
"20": "#20140C",
|
|
"30": "#372014",
|
|
"40": "#492918",
|
|
"50": "#5C321D",
|
|
"60": "#6F3C21",
|
|
"70": "#834525",
|
|
"80": "#984F2A",
|
|
"90": "#AD5A2E",
|
|
"100": "#C36433",
|
|
"110": "#D96E37",
|
|
"120": "#EF793C",
|
|
"130": "#FF884A",
|
|
"140": "#FFA170",
|
|
"150": "#FFB792",
|
|
"160": "#FFCCB3"
|
|
};
|
|
|
|
export const bmcLightTheme: Theme =
|
|
{
|
|
...createLightTheme(bmcBrandRamp),
|
|
colorBrandBackground: bmcBrandRamp[110],
|
|
};
|
|
|
|
export const bmcDarkTheme: Theme =
|
|
{
|
|
...createDarkTheme(bmcBrandRamp),
|
|
colorBrandBackground: bmcBrandRamp[120],
|
|
colorBrandForeground1: bmcBrandRamp[110],
|
|
colorBrandForeground2: bmcBrandRamp[120]
|
|
};
|