-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
102 lines (100 loc) 路 2.5 KB
/
Copy pathtailwind.config.js
File metadata and controls
102 lines (100 loc) 路 2.5 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
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
module.exports = {
important: true,
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./layouts/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
backgroundImage: {
"hero-background":
"linear-gradient(to bottom, rgba(45, 50, 130, .5), rgba(2, 14, 52, .1)), linear-gradient(to bottom, rgba(22, 32, 54, 0), #121c29fa), url('/img/castle-header-background.webp')",
},
fontFamily: {
sans: [
"Outfit",
"ui-sans-serif",
"system-ui",
"-apple-system",
"BlinkMacSystemFont",
'"Segoe UI"',
"Roboto",
'"Helvetica Neue"',
"Arial",
'"Noto Sans"',
"sans-serif",
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
'"Noto Color Emoji"',
],
},
fontSize: {
base: ["1rem", { lineHeight: "1.5rem" }],
// Body text
"body-xs": ["0.75rem", { lineHeight: "1.5rem" }],
"body-sm": ["0.875rem", { lineHeight: "1.5rem" }],
// Titles
xs: ["1rem", { lineHeight: "1rem" }],
sm: ["1.5rem", { lineHeight: "2rem" }],
md: ["2rem", { lineHeight: "1.25rem" }],
"2md": ["3rem", { lineHeight: "1.75rem" }],
"lg": ["3.5rem", { lineHeight: "3.7rem" }],
xl: ["4rem", { lineHeight: "4.3rem" }],
"2xl": ["7.5rem", { lineHeight: "7rem" }],
},
},
fontWeight: {
light: 300,
regular: 400,
medium: 500,
bold: 700,
},
colors: {
transparent: "transparent",
white: "#ffffff",
primary: {
25: "#F5F8FF",
50: "#EEF4FF",
100: "#E0EAFF",
200: "#C7D7FE",
300: "#A4BCFD",
400: "#8098F9",
500: "#6172F3",
600: "#444CE7",
700: "#3538CD",
800: "#2D31A6",
900: "#2D3282",
950: "#020E34",
},
gray: {
25: "#FCFCFD",
50: "#F8FAFC",
100: "#F1F5F9",
200: "#E2E8F0",
300: "#CBD5E1",
400: "#94A3B8",
500: "#64748B",
600: "#475569",
700: "#344054",
800: "#1D2939",
900: "#101828",
},
error: {
light: "#FECDCA",
dark: "#F97066",
},
warning: {
light: "#FEF0C7",
medium: "#FDB022",
dark: "#B55108",
},
success: {
light: "#D1FADF",
dark: "#12B76A",
},
},
},
plugins: [require("@tailwindcss/forms")],
};