-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
101 lines (96 loc) · 2.41 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
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
/** @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}",
"./src/style/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
sorafi: {
dark: "#16161D",
light: "#ECF8F8",
stormGrey: "#696D8E",
cherrySakura: "#FFB7C5",
lightTeal: "#96C0B7",
mangoYellow: "#F3C677",
brownSugar: "#B56B45",
nighBlue: "#0C0A3E",
brightRose: "#D62246",
sandPeace: "#F7E1D7",
sakura: {
50: "#fff1f3",
100: "#ffe3e8",
200: "#ffccd6",
300: "#ffa2b5",
400: "#fe6e8d",
500: "#f83b68",
600: "#e51954",
700: "#c20e47",
800: "#a20f42",
900: "#8b103f",
950: "#4e031d",
},
sky: {
50: "#eef4ff",
100: "#e0eaff",
200: "#c7d8fe",
300: "#a4bdfd",
400: "#8098f9",
500: "#6274f2",
600: "#454de6",
700: "#373bcb",
800: "#2f34a4",
900: "#2d3382",
950: "#1b1d4b",
},
keppel: {
50: "#f0fdfa",
100: "#ccfbf2",
200: "#98f7e6",
300: "#5debd9",
400: "#2cd5c4",
500: "#13b9ab",
600: "#0c958c",
700: "#0e7772",
800: "#115e5b",
900: "#134e4b",
950: "#042f2f",
},
molten: {
50: "#fff7eb",
100: "#ffe8c6",
200: "#fed189",
300: "#feaa39",
400: "#fe9621",
500: "#f87108",
600: "#dc4d03",
700: "#b63107",
800: "#94260c",
900: "#79200e",
950: "#460d02",
},
cinder: {
50: "#f6f6f9",
100: "#ececf2",
200: "#d6d6e1",
300: "#b2b3c7",
400: "#888ba8",
500: "#696d8e",
600: "#545675",
700: "#444560",
800: "#3b3c51",
900: "#353545",
950: "#16161d",
},
},
},
},
fontFamily: {
oxanium: ["var(--font-oxanium)", "sans-serif"],
},
},
plugins: [],
};