-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
41 lines (40 loc) · 916 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
// const colors = require('tailwindcss/colors');
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
],
theme: {
colors: {
primary: '#382D8B',
secondary: '#8E24AA',
mainText: '#000000',
secondaryText: '#FFFFFF',
primaryLight: '#b6adfc',
labelText: '#7C7C7D',
border: '#e7e9ed',
shimmer: '#e2e8f0',
ltBorder: '#d1d7dc',
bodyBg: '#FFFFFF',
footerBg: '#000000',
formBg: '#f8f9fa',
tertiaryBg: '#f1f1fc',
hoverBg: 'rgba(77, 79, 83, 0.4)',
headerBg: '#201f21', // #010b1f #241731 #14151d #201f21
error: '#d32f2f',
black: '#000',
white: '#fff',
},
extend: {
fontSize: {
tiny: '.93rem',
},
width: {
'61/100': '61%',
'18/25': '72%',
'3/5': '74.3%',
},
},
},
plugins: [],
};