@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: "#846d06",
borderDarkest: "#0C1618",
borderLight: "#e7c221",
borderLighter: "#f1dd84",
borderLightest: "#f7ecbb",
canvas: "#0C1618",
canvasText: "#ffffff",
headerBackground: "#0C1618",
headerNotActiveBackground: "#7F7B82",
headerNotActiveText: "#e5bd03",
headerText: "#f8df6e",
material: "#e5bd03",
materialText: "#0C1618",
materialTextDisabled: "#846d06",
materialTextDisabledShadow: "#f8df6e",
materialTextInvert: "#ffffff",
progress: "#0C1618",
inputBackground: "#ffffff",
inputBackgroundDisabled: "#e7c221"
};
const tokens = {
...theme,
colors,
shadows: generateShadows(colors)
};
export {
tokens
};