-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
50 lines (49 loc) · 1.08 KB
/
tailwind.config.js
File metadata and controls
50 lines (49 loc) · 1.08 KB
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{js,jsx}"],
theme: {
extend: {
colors: {
primary: {
DEFAULT: "#E76941",
light: "#FFA06D",
dark: "#B54B1E",
contrastText: "#F7F7F7",
},
secondary: {
DEFAULT: "# ",
light: "#A3A3A3",
dark: "#222222",
},
background: {
elevation: "#2a2a2a",
dark: "#232323",
light: "#F7F7F7",
},
text: {
light: "#F7F7F7",
dark: "#232323",
websiteteamlight: "#B6B6B6",
websiteteamyellow: "#FFC686",
},
gradient: {
light: "#383838",
dark: "#222222 ",
},
},
screens: {
xs: "0px",
sm: "600px",
md: "768px",
lg: "1024px",
xl: "1280px",
},
fontFamily: {
poppins: ["Poppins", "sans-serif"],
gothic: ["League Gothic", "sans-serif"],
orbitron: ["Orbitron", "sans-serif"],
},
},
},
plugins: [],
};