forked from rudderlabs/rudderstack-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
143 lines (142 loc) · 3.52 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
module.exports = {
important: true,
purge: false,
darkMode: "class", // or 'media' or 'class'
theme: {
minHeight: {
0: "8rem",
},
letterSpacing: {
"tight-2": "-.04em",
},
colors: {
transparent: "transparent",
current: "currentColor",
black: {
custom: "#10174C" /*footer nav btn */,
darkBg: "#070e1f",
},
blueNew: {
lighter: "#EEF5F5",
skyblue: "#E3F1F1",
custom: "#0066FF",
category: "#0166FE",
midnight: "#17176E",
midnight_v2: "#10174C",
eastbay: "#3F3C7F",
magenta: "#7F66C8",
midnight_sub: "#2e2e7c",
cardBackground: "#f5f9f9",
midPurple: "#7F66C8",
},
purpleNew: {
custom: "#7F66C8",
gigas: "#4E3B97",
},
red: {
error: "#FF0000",
dangerBorder: "#ff4642",
dangerBg: "#f5c3c2",
},
grayColor: {
custom: "#4E4E4E",
lighter: "#A7A7A7",
"lighter-2x": "#C7C7C7",
BgGray: "#FAFAFA",
priceCardBorder: "#E1E1E1",
dark: "#101836",
lightBorder: "#DEE2E7",
docsText: "#2F353F",
},
whiteColor: {
custom: "#ffffff",
},
orange: {
warningBorder: "#f77d05",
warningBg: "#f1be8d",
},
green: {
successBg: "#c1ead7",
successBorder: "#26cb7c",
},
darkScheme: {
textPrimary: "#ffffff",
btnPrimaryBg: "#86F8E0",
btnSecondaryBg: "#D692F6",
textBlack: "#000000",
grayText: "#C7C7C7",
},
},
extend: {
inset: {
18: "4.5rem",
"-18": "-4.5rem",
},
padding: {
15: "3.75rem",
19: "4.75rem",
},
width: {
120: "30rem",
18: "4.5rem",
},
colors: {
primary: "var(--primary)",
secondary: "var(--secondary)",
darkblue: "var(--darkblue)",
blue: "var(--blue)",
dark: "var(--dark)",
purple: "var(--purple)",
seegreen: "var(--seegreen)",
seegreenaction: "var(--seegreenaction)",
background: "var(--background)",
backgroundsecondary: "var(--backgroundsecondary)",
white: "var(--white)",
postdate: "var(--postdate)",
footer: "var(--footer)",
tabborder: "var(--tabborder)",
tabborderactive: "var(--tabborderactive)",
},
fontSize: {
xs: ".75rem",
sm: "14px",
tiny: ".875rem",
base: "16px",
lg: "18px",
xl: "1.25rem",
"xl-2": "1.375rem",
"2xl": "1.5rem",
"2xl-2": "1.75rem",
"3xl": "28px",
"3xl-2": "32px",
"3xl-3": "36px",
"3xl-4": "38px",
"4xl": "40px",
"5xl": "50px",
"5xl-1": "54px",
"5xl-2": "60px",
"6xl": "64px",
"7xl": "5rem",
"7xl": "5rem",
"20xl": ["350px"],
},
backgroundImage: theme => ({
"hero-pattern": "url('../images/test-bg.png')",
"hero-pattern-mobile": "url('../images/test-bg-mobile.png')",
"hero-pattern-mobile-2": "url('../images/test-bg-mobile-2.png')",
}),
},
fontFamily: {
custom: ["Basis Grotesque", "sans-serif"],
},
boxShadow: {
md: "0 1px 24px rgba(0, 0, 0, 0.05), 0 1px 24px rgba(0, 0, 0, 0.05)",
menu: "0 16px 40px rgba(0, 0, 0, 0.05), 0 16px 40px rgba(0, 0, 0, 0.05)",
},
},
variants: {
extend: {},
display: ["responsive", "group-hover", "group-focus"],
},
plugins: [],
}