-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
71 lines (69 loc) · 1.23 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
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: "320px",
sm: "425px",
md: "768px",
lg: "1024px",
xl: "1280px",
},
},
fontSize: {
xs: ".75rem",
sm: ".8rem",
tiny: ".9rem",
base: "1rem",
medium: "1.15rem",
paragraph: "1.05rem",
lg: "1.25rem",
xl: "1.5rem",
"2xl": "1.75rem",
"3xl": "1.85rem",
"4xl": "2rem",
"5xl": "2.25rem",
"6xl": "2.5rem",
"7xl": "3rem",
"8xl": "4rem",
"9xl": "4rem",
"10xl": "4.5rem",
"11xl": "5rem",
"12xl": "5.5rem",
},
colors: {
// Base colors Variables
black: "#111",
grey: "#cecece",
white: "#ffffff",
pureBlack: "#000",
darkGrey: "#8f8f8f",
lightGrey: "#f7f7f7",
lightGreyTwo: "#fafafa",
// Main colors
primary: {
default: "#f51d05",
two: "#d63725",
dark: "#6f0000",
darker: "#35090a",
},
accent: {
default: "#15c9c1",
two: "#3ac7c0",
dark: "#037872",
},
tertiary: {
default: "#0e2431",
two: "#0e2431",
dark: "#0e2431",
},
},
},
plugins: [],
};
export default config;