-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
46 lines (41 loc) · 1014 Bytes
/
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
/** @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}',
],
theme: {
extend: {
screens: {
desktop: '1152px',
},
},
colors: {
'yellow-dark': '#C47F17',
yellow: '#DBAC2C',
'yellow-light': '#F1E9C9',
green: '#1D8841',
'purple-dark': '#4B2995',
purple: '#8047F8',
'purple-light': '#EBE5F9',
'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',
transparent: 'transparent',
'error-color': '#FF4343',
},
fontFamily: {
ballo2: ['var(--ballo-2)'],
roboto: ['var(--roboto)'],
},
},
plugins: [],
}