forked from opentofu/registry-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
61 lines (61 loc) · 1.3 KB
/
tailwind.config.js
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{ts,tsx}"],
darkMode: "class",
theme: {
extend: {
screens: {
"3xl": "1920px",
},
fontFamily: {
sans: ['"DM Sans"', "system-ui"],
},
spacing: {
em: "1em",
rem: "1rem",
},
colors: {
brand: {
900: "#332c05",
850: "#4d4107",
800: "#66570a",
700: "#b29911",
650: "#e6b600",
600: "#f0cd14",
500: "#ffda18",
400: "#ffe146",
300: "#ffe974",
200: "#fff0a3",
150: "#fff4ba",
100: "#fff8d1",
50: "#fffbe8",
},
gray: {
950: "#0D0E10",
900: "#1B1D20",
850: "#282B31",
800: "#353A41",
700: "#505661",
600: "#6A7382",
500: "#8590A2",
400: "#9DA6B5",
300: "#B6BCC7",
200: "#CED3DA",
150: "#DADEE3",
100: "#E7E9EC",
50: "#F9F9F9",
},
blue: {
950: "#0c192b",
900: "#14253D",
850: "#14345F",
500: "#4392FF",
},
purple: {
700: "#5c25a1",
300: "#BE8BFF",
},
},
},
},
};