forked from Talon-Games/talon-games
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
107 lines (106 loc) · 2.45 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
screens: {
xs: "450px",
},
fontSize: {
sm: "0.750rem",
base: "1rem",
xl: "1.333rem",
"2xl": "1.777rem",
"3xl": "2.369rem",
"4xl": "3.158rem",
"5xl": "4.210rem",
},
fontFamily: {
heading: "EB Garamond",
body: "Poppins",
},
fontWeight: {
normal: "400",
bold: "700",
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
colors: {
text: {
50: "#f6eeee",
100: "#eddede",
200: "#dcbcbc",
300: "#ca9b9b",
400: "#b97979",
500: "#a75858",
600: "#864646",
700: "#643535",
800: "#432323",
900: "#211212",
950: "#110909",
},
background: {
50: "#f2f2f2",
100: "#e6e6e6",
200: "#cccccc",
300: "#b3b3b3",
400: "#999999",
500: "#808080",
600: "#666666",
700: "#4d4d4d",
800: "#333333",
900: "#1a1a1a",
950: "#0d0d0d",
},
primary: {
50: "#ffe5e5",
100: "#ffcccc",
200: "#ff9999",
300: "#ff6666",
400: "#ff3333",
500: "#ff0000",
600: "#cc0000",
700: "#990000",
800: "#660000",
900: "#330000",
950: "#1a0000",
},
secondary: {
50: "#fef7e6",
100: "#feeecd",
200: "#fcde9c",
300: "#fbcd6a",
400: "#fabd38",
500: "#f9ac06",
600: "#c78a05",
700: "#956704",
800: "#634503",
900: "#322201",
950: "#191101",
},
accent: {
50: "#f2f2f2",
100: "#e6e6e6",
200: "#cccccc",
300: "#b3b3b3",
400: "#999999",
500: "#808080",
600: "#666666",
700: "#4d4d4d",
800: "#333333",
900: "#1a1a1a",
950: "#0d0d0d",
},
},
},
},
plugins: [],
};
export default config;