-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
38 lines (36 loc) · 1015 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
37
38
import { type Config } from "tailwindcss";
export default {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
dark: {
700: "hsla(0, 0%, 15%)",
800: "hsla(0, 0%, 6%)",
900: "hsla(0, 0%, 3%)",
full: "hsla(0, 0%, 0%)",
},
gray1: "hsl(0, 0%, 8.5%)",
gray2: "hsl(0, 0%, 11.0%)",
gray3: "hsl(0, 0%, 13.6%)",
gray4: "hsl(0, 0%, 15.8%)",
gray5: "hsl(0, 0%, 17.9%)",
gray6: "hsl(0, 0%, 20.5%)",
gray7: "hsl(0, 0%, 24.3%)",
gray8: "hsl(0, 0%, 31.2%)",
gray9: "hsl(0, 0%, 43.9%)",
gray10: "hsl(0, 0%, 49.4%)",
gray11: "hsl(0, 0%, 62.8%)",
gray12: "hsl(0, 0%, 93.0%)",
},
fontFamily: {
noton: ['var(--font-noto-n)'],
manrope: ['var(--font-manrope)'],
},
screens: {
'xs': '400px', // min-width
},
},
},
plugins: [],
} satisfies Config;