-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
executable file
·82 lines (82 loc) · 2.72 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/layouts/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
"Brand/Primary/Primary-200": "#8181AE",
"Text/Base": "#161B3D",
"Text/Lighten": "#7B7485",
"Orange/1": "#FF9500",
"Text/Gray-900": "#18191F",
"Text/Gray-800": "#474A57",
"Text/Gray-100": "#F4F5F7",
"Blue/1": "#007AFF",
"Purple/1": "#AF52DE",
"Gray/1": "#1C1C1E",
"Brand/Text/Text-800": "#252525",
"text/text-secondary": "#7C7C7C",
"Surface/surface-400": "#E6ECF4",
"Brand/Surface/surface-200": "#EEF2F7",
"Brand/Surface/surface-50": "#F5F7FA",
"Brand/Surface/surface-800": "#AAB1bc",
"Brand/Text/Text-600": "#4E5668",
"Brand/Text/Text-400": "#98A0B3",
"Accent/Danger/Danger-800": "#C92014",
"Accent/Success/Success-800": "#00BD7E",
"Shade/Shade1": "#191919",
"Brand/Primary/Primary-800": "#03045E",
"Gray/10": "#E5E5EA",
"text/text-secondary": "#7C7C7C",
"Text/Text-600": "#4E5668",
"Surface/surface-600": "#CFD7E2",
"Shade/Shade2": "#696969",
"Brand/Primary/Primary-100": "#CDCDDF",
"Brand/Primary/Primary-600": "#2D2E79",
"Accent/Success/Success-100": "#EBFFF8",
"Brand/Surface/surface-800": "#AAB1BC",
"Accent/Warning/Warning-100": "#FFF8EB",
"Accent/Warning/Warning-800": "#e39f17",
"Accent/Danger/Danger-100": "#FFF3F2",
"Secondary/Secondary-4": "#EBEEF0",
"Secondary/Secondary-1": "#191919",
"Secondary-Text": "#ADADAD",
"Accent/Danger/Danger-200": "#FBB3AE",
"Brand/Text/Text-100": "#F2F6FF",
"Brand/Text/Text-200": "#C3CAD9",
"Gray/200": "#EAECF0",
"Gray/300": "#D0D5DD",
"Shade/Shade2": "#696969",
"Gray/50": "#F9FAFB",
"Gray/500": "#667085",
"Gray/700": "#344054",
"Gray/900": "#101828",
"Gray/200": "#EAECF0",
"Gray/7": "#AEAEB2",
"Primary/50": "#F9F5FF",
"Success/50": "#ECFDF3",
White: "#FFFFFF",
"Red/1": "#FF3B30",
"Green/1": "#34C759",
"Text/Base": "#161B3D",
},
fontFamily: {
DarkerGrotesque: ["Darker Grotesque", "sans-serif"],
Poppins: ["Poppins", "sans-serif"],
DMSans: ["DM Sans"],
Mulish: ["Mulish"],
Spartan: ["Spartan"],
Manrope: ["Manrope"],
},
screens: {
BigMobile: { min: "420px", max: "639px" },
},
},
},
plugins: [],
};