-
Notifications
You must be signed in to change notification settings - Fork 13
/
tailwind.config.js
74 lines (74 loc) · 1.38 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
62
63
64
65
66
67
68
69
70
71
72
73
74
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,tsx, js, ts}"],
theme: {
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
},
fontFamily: {
sans: ["Inter var", "sans-serif"],
serif: ["Georgia", "serif"],
mono: ["Menlo", "Monaco", "Consolas", "monospace"],
poppins: ["Poppins", "sans-serif"],
roboto: ["Roboto", "sans-serif"],
},
fontWeights: {
light: 200,
normal: 400,
medium: 500,
bold: 700,
black: 900,
},
extend: {
colors: {
primary: "#5271FF",
"light": {
"white": {
100: "#F9F7F7",
200: "#DBE2EF"
},
"blue": {
100: "#3F72AF",
200: "#112D4E",
},
},
"dark": {
"blue": {
100: "#BBE1FA",
200: "#3282B8",
300: "#0F4C75",
400: "#1B262C",
},
},
// <--- New Themes Color Palettes --->
"patriot": {
darkblue: "#16213E",
blue: "#0F3460",
purple: "#533483",
red: "#E94560"
},
"aqua": {
"teal": {
100: "#E7F6F2",
200: "#A5C9CA",
300: "#395B64",
400: "#2C3333"
}
},
// Saints Row Reference
"saints": {
"purple": {
100: "#372948",
200: "#251B37",
},
pink: "#FFCACA",
white: "#FFECEF"
}
},
},
},
plugins: [],
};