-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
36 lines (35 loc) · 940 Bytes
/
tailwind.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import { type Config } from "tailwindcss";
import { fontFamily } from "tailwindcss/defaultTheme";
export default {
content: ["./src/**/*.tsx"],
theme: {
extend: {
fontFamily: {
sans: ["var(--font-sans)", ...fontFamily.sans],
},
colors: {
primary: "#FFC60D",
secondary: "#7700ff",
// highlight: "#A348F6",
// accent: "#0047FF",
// accentDark: "#168FFF",
button: "#ffc500XX",
buttonHover: "#cc9d00",
textPrimary: "#312f27",
textPrimaryHover: "#000",
textSecondary: "#fff",
textSecondaryHover: "#aaa",
// borderDiv: "#B8B8B8",
},
screens: {
"-2xl": { max: "1535px" },
"-xl": { max: "1279px" },
"-lg": { max: "1024px" },
"-md": { max: "768px" },
"-sm": { max: "640px" },
"3xl": { min: "1820px" },
},
},
},
plugins: [],
} satisfies Config;