-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
67 lines (57 loc) · 1.44 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/** @type {import('tailwindcss').Config} */
/* eslint-env node */
module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
transitionDuration: {
DEFAULT: '200ms',
},
extend: {
colors: {
white: '#fff',
'lightest-grey': '#f0f2f5',
'lighter-grey': '#dddee0',
'light-grey': '#91929e',
grey: '#7d8592',
black: '#0a1629',
primary: '#713fff',
'dark-primary': '#3f00f2',
danger: '#f65959',
'dark-danger': '#ee0c21',
warning: '#ffbd21',
'dark-warning': '#f4ac00',
ok: '#0ac947',
'dark-ok': '#08aa3c',
},
boxShadow: {
diffused: '0 0.5rem 3.6rem rgba(0, 0, 0, 0.1)',
},
fontFamily: {
poppins: ['Poppins', 'sans-serif'],
arial: ['Arial', 'Helvetica', 'sans-serif'],
},
fontSize: {
'4.5xl': '2.5rem',
},
screens: {
'3xs': '340px',
'2xs': '400px',
xs: '600px',
},
keyframes: {
loading: {
'0%': { transform: 'translateX(-100%)' },
'50%': { transform: 'translateX(0)' },
'100%': { transform: 'translateX(100%)' },
},
},
animation: {
loading: 'loading 1.5s cubic-bezier(0.2, 0.5, 0.4, 0.7) 0.1s infinite',
},
transitionProperty: {
dashoffset: 'stroke-dashoffset',
},
},
},
plugins: [],
};