-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
74 lines (73 loc) · 1.58 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/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
screens: {
sm: "480px",
md: "768px",
lg: "976px",
xl: "1440px",
},
extend: {
colors: {
primary: {
100: "#e9effb",
200: "#bdd0f4",
300: "#91b0ed",
400: "#6590e6",
500: "#3971df",
600: "#2057c6",
700: "#19449a",
800: "#12306e",
900: "#0b1d42",
950: "#040a16",
},
secondary: {
100: "#e9e7fe",
200: "#bdb7fb",
300: "#9287f8",
400: "#6657f5",
500: "#3a27f2",
600: "#210dd8",
700: "#1a0aa8",
800: "#120778",
900: "#0b0448",
950: "#040118",
},
yellow: {
50: "#fef6e6",
100: "#fde5b5",
200: "#fcd483",
300: "#fac251",
400: "#f9b120",
500: "#df9706",
600: "#ae7605",
700: "#7c5403",
800: "#4a3202",
900: "#191101",
},
blue: "#1fb6ff",
purple: "#7e5bef",
pink: "#ff49db",
orange: "#ff7849",
green: "#13ce66",
gray: "#8492a6",
},
fontFamily: {
sans: ["Montserrat", "Inter var"],
},
spacing: {
128: "32rem",
144: "36rem",
},
borderRadius: {
"4xl": "2rem",
},
},
},
plugins: [],
};