-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.cjs
44 lines (44 loc) · 1016 Bytes
/
tailwind.config.cjs
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} */
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
future: {
hoverOnlyWhenSupported: true,
},
theme: {
extend: {
animation: {
'spin-ease': 'spin .9s ease-in-out infinite',
},
fontFamily: {
unbounded: ['Unbounded'],
mukta: ['Mukta'],
ibmplex: ['IBM Plex Mono'],
},
colors: {
baseBackground: { 100: '#141d31', 200: '#0b101b' },
themePrimary: {
50: '#f8fbff',
100: '#bad3fd',
200: '#7dabf8',
300: '#4686f5',
400: '#1d68e9',
500: '#0050dd',
600: '#0047cd',
700: '#003cb8',
800: '#002ca0',
900: '#000c85',
1000: '#170069',
},
welcomePageGradientColor: {
1: '#ff930f',
2: '#fff95b',
3: '#ff1b6b',
4: '#45caff',
5: '#0061ff',
6: '#60efff',
},
},
},
},
plugins: [],
};