-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
43 lines (41 loc) · 936 Bytes
/
tailwind.config.cjs
File metadata and controls
43 lines (41 loc) · 936 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
36
37
38
39
40
41
42
43
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors');
module.exports = {
mode: 'jit',
//purge: ['./src/**/*.{js,jsx,ts,tsx}'],
darkMode: 'class',
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
colors: {
primary: '#202225',
secondary: '#5865f2',
gray: {
900: '#202225',
800: '#2f3136',
700: '#36393f',
600: '#4f545c',
400: '#d4d7dc',
300: '#e3e5e8',
200: '#ebedef',
100: '#f2f3f5'
}
},
animation: {
shimmer: 'shimmer 10s infinite linear'
},
keyframes: {
shimmer: {
'0%': { backgroundPosition: '-150% 0' },
'50%': { backgroundPosition: '150% 0' },
'100%': { backgroundPosition: '-150% 0' }
}
},
backgroundImage: {
shimmer:
'linear-gradient(90deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.2) 100%)'
}
}
},
plugins: []
};