-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.ts
84 lines (82 loc) · 1.55 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
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
blue: {
default: "#2563eb",
two: "#3978ff",
light: "#3d77f3",
dark: "#09275e",
darker: "#0d172a",
darkerTwo: "#061229",
},
yellow: {
default: "#f6ad37",
two: "#e8b042",
three: "#fac546",
light: "#fbbc57",
dark: "#e4a002",
darker: "#bc7700",
},
green: {
default: "#86bc08",
two: "#74ae00",
three: "#e39e34",
dark: "#57a300",
darkTwo: "#376b13",
},
purple: {
default: "#833df4",
two: "#7736f1",
three: "#622bc7",
dark: "#2d2378",
},
},
},
},
plugins: [],
};
export default config;