-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (35 loc) · 900 Bytes
/
tailwind.config.js
File metadata and controls
35 lines (35 loc) · 900 Bytes
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
/** @type {import('tailwindcss').Config} */
// eslint-disable-next-line no-undef
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
colors: {
pri: '#2158D2',
'pri-100': '#F2F3FD',
'pri-200': '#DBEAFE',
'pri-300': '#C6CFF7',
'pri-400': '#A3B2F3',
'pri-500': '#7690EF',
'pri-600': '#2563EB',
'pri-700': '#2158D2',
'pri-800': '#1C4CB6',
'pri-900': '#173E94',
'pri-1000': '#102C69',
sec: '#171D2E',
'sec-100': '#F2F2F2',
'sec-200': '#E4E4E5',
'sec-300': '#C6C6C7',
'sec-400': '#A2A2A5',
'sec-500': '#737479',
'sec-600': '#171D2E',
'sec-700': '#171D2E',
'sec-800': '#111623',
'sec-900': '#0E121D',
'sec-1000': '#102C69',
'sec-1100': '#f4f4f4'
}
}
},
plugins: []
};