-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
44 lines (43 loc) · 1.03 KB
/
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
37
38
39
40
41
42
43
44
import type { Config } from "tailwindcss"
import defaultTheme from "tailwindcss/defaultTheme"
export default <Partial<Config>>{
content: ["./src/**/*.{vue,js,ts,jsx,tsx}", "./nuxt.config.{js,ts}", "content/**/**.md"],
darkMode: "class",
theme: {
extend: {
colors: {
primary: {
dark: {
500: "#403838",
700: "#2c2525",
800: "#211c1c",
900: "#191515",
border: "#72696A",
icon: "#FFF0F3",
active: "#5B5353",
},
light: {
700: "#FDF6E3",
900: "#F4EDDA",
border: "#DDD3B7",
icon: "#363430",
active: "#D5C9B2",
},
},
},
screens: {
xxs: "320px",
xs: "475px",
md: "856px",
},
fontFamily: {
mono: ["Operator Mono", "Fira Code", ...defaultTheme.fontFamily.mono],
brand: ["Fira Sans"],
},
},
},
variants: {
extend: {},
},
plugins: [require("tailwindcss-animate")],
}