-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtailwind.config.ts
44 lines (43 loc) · 1.04 KB
/
tailwind.config.ts
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
/** @type {import('tailwindcss').Config} */
import { getIconCollections, iconsPlugin } from '@egoist/tailwindcss-icons';
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
colors: {
primary: {
'50': '#ebfffc',
'100': '#cdfffb',
'200': '#a1fffb',
'300': '#60fffb',
'400': '#18f8f7',
'500': '#00dcde',
'600': '#00afb9',
'700': '#088b96',
'800': '#106f7a',
'900': '#125c67',
'950': '#053d47',
},
secondary: {
'50': '#fdfcdc',
'100': '#fdfbc4',
'200': '#fcf68c',
'300': '#fbe949',
'400': '#f7d818',
'500': '#e7be0b',
'600': '#c79507',
'700': '#9f6b09',
'800': '#835410',
'900': '#704513',
'950': '#412407',
},
},
},
},
plugins: [
iconsPlugin({
collections: getIconCollections(['solar', 'tabler']),
}),
],
};