more brainstorming

This commit is contained in:
z1glr
2025-01-06 17:03:18 +00:00
parent 26030a5026
commit 9a7a80ac80
21 changed files with 2767 additions and 443 deletions

View File

@@ -1,31 +1,115 @@
import type { Config } from "tailwindcss";
import { nextui } from "@nextui-org/theme";
const HIGHLIGHT = "#ff5053";
const FOREGROUND = "#fef2ff";
const ACCENT1 = "#b2aaff";
const ACCENT2 = "#6a5fdb";
const ACCENT3 = "#261a66";
const ACCENT4 = "#29114c";
const ACCENT5 = "#190b2f";
const BACKGROUND = "#0f000a";
export default {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}"
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
background: "var(--background)",
primary: "var(--primary)",
highlight: "var(--highlight)",
"accent-1": "var(--accent-1)",
"accent-2": "var(--accent-2)",
"accent-3": "var(--accent-3)",
"accent-4": "var(--accent-4)",
"accent-5": "var(--accent-5)"
}
highlight: HIGHLIGHT,
foreground: {
DEFAULT: FOREGROUND,
"50": FOREGROUND,
"100": "#fce8ff",
"200": "#fad0fe",
"300": "#f8abfc",
"400": "#f579f9",
"500": "#eb46ef",
"600": "#d226d3",
"700": "#af1cad",
"800": "#8f198c",
"900": "#751a70",
"950": "#4e044a",
},
"accent-1": ACCENT1,
"accent-2": ACCENT2,
"accent-3": ACCENT3,
"accent-4": ACCENT4,
"accent-5": ACCENT5,
background: BACKGROUND,
},
boxShadow: {
border: `inset 0 0 0 2px ${ACCENT2}`,
},
},
fontFamily: {
"display-headline": ["pilowlava"],
headline: ["spacegrotesk"],
subheadline: ["uncut-sans"],
body: ["uncut-sans"],
numbers: ["space-mono"]
}
numbers: ["space-mono"],
},
},
plugins: []
darkMode: "class",
plugins: [
nextui({
defaultTheme: "dark",
defaultExtendTheme: "dark",
themes: {
dark: {
colors: {
// default: {
// DEFAULT: ACCENT2,
// },
primary: {
DEFAULT: ACCENT2,
"50": "#39357a",
"100": "#42399a",
"200": "#5144be",
"300": ACCENT2,
"400": "#6f6ee6",
"500": "#8b91ee",
"600": "#acb7f5",
"700": "#cbd3fa",
"800": "#e2e7fd",
"900": "#eff3fe",
},
secondary: {
DEFAULT: ACCENT3,
"50": "#3b288a",
"100": "#462fa8",
"200": "#5538c9",
"300": "#634add",
"400": "#776ae8",
"500": "#9a95f0",
"600": "#bdbcf6",
"700": "#dadbfa",
"800": "#ebebfc",
"900": "#f4f4fe",
},
// background: {
// DEFAULT: BACKGROUND,
// },
danger: {
DEFAULT: HIGHLIGHT,
"50": "#fff1f1",
"100": "#ffe1e2",
"200": "#ffc7c8",
"300": "#ffa0a2",
"400": HIGHLIGHT,
"500": "#f83b3e",
"600": "#e51d20",
"700": "#c11417",
"800": "#a01416",
"900": "#84181a",
},
},
},
},
}),
],
} satisfies Config;