-
Notifications
You must be signed in to change notification settings - Fork 173
/
tailwind.config.js
31 lines (31 loc) · 1.04 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
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
theme: {
extend: {
boxShadow: {
'custom-white': '0px 0px 4px 10px rgba(255, 255, 255, 0.2)',
},
colors: {
customGreen: '#273f44',
customGrayText: '#888a8c',
customBlue: '#aadaf1',
customGraySkip: '#888A8C',
customBlueButton: '#007aff',
customGrayAddress: '#707579',
customGrayWallet: '#efeff4',
customBlackText: '#212121',
customBlueSelected: '#B9C1F4',
customGrayLine: '#c6c6c6',
customGrayAccountDetails: '#616161',
customDarkModeBackground: '#262233',
customDarkModeTextColor: '#DEDEDE',
},
gridTemplateColumns: {
'custom-1-3-1': '1fr 3fr 1fr',
},
},
},
plugins: [],
};