18 lines
423 B
TypeScript
18 lines
423 B
TypeScript
import { colors, colorsType } from "./lib/theme-colors";
|
|
|
|
export const theme: {colors: colorsType} = {
|
|
colors: {
|
|
...colors
|
|
// brand25: "#F5FAFF",
|
|
// brand50: "#EFF8FF",
|
|
// brand100: "#D1E9FF",
|
|
// brand200: "#B2DDFF",
|
|
// brand300: "#84CAFF",
|
|
// brand400: "#53B1FD",
|
|
// brand500: "#2E90FA",
|
|
// brand600: "#1570EF",
|
|
// brand700: "#175CD3",
|
|
// brand800: "#1849A9",
|
|
// brand900: "#194185",
|
|
},
|
|
};
|