-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
103 lines (99 loc) · 1.96 KB
/
tailwind.config.js
File metadata and controls
103 lines (99 loc) · 1.96 KB
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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
colors: {
'yellow-light': '#F1E9C9',
yellow: '#DBAC2C',
'yellow-dark': '#C47F17',
'purple-light': '#EBE5F9',
purple: '#8047F8',
'purple-dark': '#4B2995',
'base-title': '#272221',
'base-subtitle': '#403937',
'base-text': '#574F4D',
'base-label': '#8D8686',
'base-hover': '#D7D5D5',
'base-button': '#E6E5E5',
'base-input': '#EDEDED',
'base-card': '#F3F2F2',
background: '#FAFAFA',
white: '#FFFFFF',
},
fontFamily: {
text: ['Roboto', 'sans-serif'],
title: ["'Baloo 2'", 'sans-serif'],
},
fontSize: {
xs: [
'0.75rem',
{
lineHeight: '130%',
fontWeight: '700',
},
],
s: [
'0.875rem',
{
lineHeight: '130%',
fontWeight: '400',
},
],
m: [
'1rem',
{
lineHeight: '130%',
fontWeight: '400',
},
],
l: [
'1.25rem',
{
lineHeight: '130%',
fontWeight: '400',
},
],
'title-xs': [
'1.125rem',
{
lineHeight: '130%',
fontWeight: '700',
},
],
'title-s': [
'1.25rem',
{
lineHeight: '130%',
fontWeight: '700',
},
],
'title-m': [
'1.5rem',
{
lineHeight: '130%',
fontWeight: '700',
},
],
'title-l': [
'2rem',
{
lineHeight: '130%',
fontWeight: '800',
},
],
'title-xl': [
'3rem',
{
lineHeight: '130%',
fontWeight: '800',
},
],
},
extend: {
backgroundImage: {
intro: "url('./src/assets/background.png')",
},
},
},
plugins: [],
}