@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: "#526d67",
borderDarkest: "#050608",
borderLight: "#a2c7c0",
borderLighter: "#cbe0dc",
borderLightest: "#e2edeb",
canvas: "#000000",
canvasText: "#050608",
headerBackground: "#4b8178",
headerNotActiveBackground: "#89b0a8",
headerNotActiveText: "#4b8178",
headerText: "#ffffff",
material: "#89b0a8",
materialText: "#050608",
materialTextDisabled: "#526d67",
materialTextDisabledShadow: "#cee8e3",
materialTextInvert: "#ffffff",
progress: "#4b8178",
inputBackground: "#ffffff",
inputBackgroundDisabled: "#a2c7c0"
};
const tokens = {
...theme,
colors,
shadows: generateShadows(colors)
};
export {
tokens
};