forked from sritanmotati/potentia-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
50 lines (49 loc) · 1.64 KB
/
tailwind.config.js
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
const defaultTheme = require('tailwindcss/defaultTheme');
const colors = require('tailwindcss/colors')
module.exports = {
mode: 'jit',
theme: {
extend: {
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
},
// colors: {
// 'dark-surface': '#121212',
// 'dark-high-emphasis': 'rgba(255,255,255,0.87)',
// 'dark-med-emphasis': 'rgba(255, 255, 255, 0.60)',
// 'dark-disabled-emphasis': 'rgba(255, 255, 255, 0.38)',
// },
boxShadow: {
xs: '0 0 0 1px rgba(0, 0, 0, 0.05)',
solid: '0 0 0 2px currentColor',
outline: `0 0 0 3px rgba(156, 163, 175, .5)`,
'outline-gray': `0 0 0 3px rgba(254, 202, 202, .5)`,
'outline-blue': `0 0 0 3px rgba(191, 219, 254, .5)`,
'outline-green': `0 0 0 3px rgba(167, 243, 208, .5)`,
'outline-yellow': `0 0 0 3px rgba(253, 230, 138, .5)`,
'outline-red': `0 0 0 3px rgba(254, 202, 202, .5)`,
'outline-pink': `0 0 0 3px rgba(251, 207, 232, .5)`,
'outline-purple': `0 0 0 3px rgba(221, 214, 254, .5)`,
'outline-indigo': `0 0 0 3px rgba(199, 210, 254, .5)`,
},
colors: {
orange: '#EE6C4D',
teal: '#CCEFEF',
darkteal: '#abcece',
cyan: colors.cyan,
darkblue: "#3D5A80",
}
},
}, variants: {
extend: {
backgroundColor: ['group-focus', 'active'],
borderColor: ['group-focus'],
boxShadow: ['group-focus', 'focus'],
opacity: ['group-focus'],
textColor: ['group-focus', 'active'],
textDecoration: ['group-focus'],
}
},
plugins: [],
purge: ['./src/**/*.{js,jsx,ts,tsx}'],
};