@react95/core
Version:
Windows 95 styleguide
33 lines (32 loc) • 787 B
JavaScript
import { theme, generateShadows } from "../baseTheme.mjs";
const colors = {
anchor: "#1034a6",
anchorVisited: "#440381",
borderDark: "#017401",
borderDarkest: "#000000",
borderLight: "#1dbc1b",
borderLighter: "#72ea71",
borderLightest: "#b1f3b0",
canvas: "#000000",
canvasText: "#ffffff",
headerBackground: "#FF1D15",
headerNotActiveBackground: "#7f7f7f",
headerNotActiveText: "#000000",
headerText: "#ffffff",
material: "#00a800",
materialText: "#000000",
materialTextDisabled: "#017401",
materialTextDisabledShadow: "#55fd55",
materialTextInvert: "#000000",
progress: "#FF1D15",
inputBackground: "#ffffff",
inputBackgroundDisabled: "#e5e5e5"
};
const tokens = {
...theme,
colors,
shadows: generateShadows(colors)
};
export {
tokens
};