@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: "#3c1f3e",
borderDarkest: "#18051a",
borderLight: "#945b9b",
borderLighter: "#c5a3c9",
borderLightest: "#dfcce1",
canvas: "#18051a",
canvasText: "#c47bcc",
headerBackground: "#1034a6",
headerNotActiveBackground: "#210e23",
headerNotActiveText: "#652a6d",
headerText: "#010601",
material: "#652a6d",
materialText: "#c57ece",
materialTextDisabled: "#3c1f3e",
materialTextDisabledShadow: "#c47bcc",
materialTextInvert: "#c47bcc",
progress: "#000080",
inputBackground: "#ffffff",
inputBackgroundDisabled: "#945b9b"
};
const tokens = {
...theme,
colors,
shadows: generateShadows(colors)
};
export {
tokens
};