-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
executable file
·57 lines (56 loc) · 1.24 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
45
46
47
48
49
50
51
52
53
54
55
56
57
import type { Config } from 'tailwindcss';
const plugin = require('tailwindcss/plugin');
export default <Partial<Config>>{
darkMode: 'class',
theme: {
extend: {
fontFamily: {
brand: ['Inter', 'sans-serif'],
},
animation: {
shimmer: 'shimmer 2s linear infinite',
},
keyframes: {
shimmer: {
from: {
backgroundPosition: '0 0',
},
to: {
backgroundPosition: '-200% 0',
},
},
},
colors: {
bristol: {
50: '#eff5f6',
100: '#cfe2e3',
200: '#afced0',
300: '#8ebabd',
400: '#6ea7aa',
500: '#558d91',
600: '#426e71',
700: '#2f4e50',
800: '#1c2f30',
900: '#091010',
},
athena: {
50: '#e7fbfe',
100: '#b7f2fb',
200: '#87e9f8',
300: '#57e0f5',
400: '#27d7f2',
500: '#0dbed8',
600: '#0a94a8',
700: '#076978',
800: '#043f48',
900: '#011518',
},
},
},
},
plugins: [
plugin(function ({ addVariant }: { addVariant: any }) {
addVariant('active', ['&.active', '.active &']);
}),
],
};