-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
54 lines (54 loc) · 1.48 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
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: 'jit',
content: [
'./src/**/*.tsx'
],
theme: {
extend: {
fontFamily: {
'regular': 'Roboto',
'title': 'Baloo 2',
},
fontSize: {
"title-title-xl": "3rem",
"title-title-l": "2rem",
"title-title-m": "1.5rem",
"title-title-s": "1.2rem",
"title-title-xs": "1.125rem",
"text-regular-l": "1.25rem",
"text-bold-l": "1.25rem",
"text-regular-m": "1rem",
"text-bold-m": "1rem",
"text-regular-s": "0.875rem",
"text-bold-s": "0.75rem",
"components-tag": "0.625rem",
"components-button-g": "0.875rem",
"components-button-s": "0.75rem",
},
colors: {
"base-white": "#FFFFFF",
"base-background": "#FAFAFA",
"base-card": "#F3F2F2",
"base-input": "#EDEDED",
"base-button": "#E6E5E5",
"base-hover": "#D7D5D5",
"base-label": "#8D8686",
"base-text": "#574F4D",
"base-subtitle": "#403937",
"base-title": "#272221",
"base-error": "#f84747",
"brand-purple-dark": "#4B2995",
"brand-purple": "#8047F8",
"brand-purple-light": "#EBE5F9",
"brand-yellow-dark": "#C47F17",
"brand-yellow": "#DBAC2C",
"brand-yellow-light": "#F1E9C9",
},
backgroundImage: {
'background': "url('src/assets/images/intro-background.png')"
}
},
},
plugins: [],
}