@react95/core
Version:
Windows 95 styleguide
33 lines (32 loc) • 787 B
JavaScript
import { theme, generateShadows } from "../baseTheme.mjs";
const colors = {
anchor: "#000e7a",
anchorVisited: "#440381",
borderDark: "#868a8e",
borderDarkest: "#000000",
borderLight: "#d2d2d2",
borderLighter: "#e6e6e6",
borderLightest: "#ffffff",
canvas: "#000000",
canvasText: "#ffffff",
headerBackground: "#000e7a",
headerNotActiveBackground: "#7f787f",
headerNotActiveText: "#c6c6c6",
headerText: "#fefefe",
material: "#c3c7cb",
materialText: "#000000",
materialTextDisabled: "#868a8e",
materialTextDisabledShadow: "#d2d2d2",
materialTextInvert: "#ffffff",
progress: "#000e7a",
inputBackground: "#ffffff",
inputBackgroundDisabled: "#d2d2d2"
};
const tokens = {
...theme,
colors,
shadows: generateShadows(colors)
};
export {
tokens
};