-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.cjs
45 lines (45 loc) · 1.2 KB
/
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
45
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors');
module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {
animation: {
'pulse-fast': 'pulse 1s cubic-bezier(0.4, 0, 0.6, 1) infinite'
}
},
colors: {
transparent: 'transparent',
primary: '#0D8C5D',
secondary: '#67AC64',
background: '#D3D3D3',
error: '#A21c1c',
text: '#000000',
white: '#FFFFFF',
black: '#000000',
bluebg: '#276ef1',
gray: colors.neutral,
red: colors.red,
yellow: colors.amber,
blue: colors.blue,
purple: colors.violet,
green: colors.green,
orange: colors.orange,
cyan: colors.cyan,
pink: colors.pink
},
screens: {
xs: '500px',
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
xxl: '1536px',
'2xl': '1536px'
}
},
variants: {
extend: {}
},
plugins: []
};