-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
91 lines (90 loc) · 2.25 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
screens: {
mobile: '320px',
tablet: '481px',
laptop: '769px',
desktop: '1025px',
monitor: '1201px',
bigmonitor: '1441px',
},
extend: {
colors: {
brand: {
onyx: '#010324',
red: '#ED0070',
purple: '#902494',
blue: '#7B70FF',
white: '#FFFFFF',
yellow: '#E0FF69',
sky: '#64FFE1',
lime: '#7FF200',
pink: '#E173FA',
},
success: {
DEFAULT: '#8EFF1D',
100: '#C1FF83',
200: '#B7FF6E',
300: '#A2FF45',
400: '#8EFF1D',
500: '#79F300',
600: '#65CA00',
700: '#499200',
},
warning: {
DEFAULT: '#FE6D73',
100: '#FFE7E8',
200: '#FFBEC1',
300: '#FE969A',
400: '#FE6D73',
500: '#FE353E',
600: '#F9020C',
700: '#C10109',
},
info: {
DEFAULT: '#43E9D8',
100: '#9EF4EB',
200: '#8CF1E7',
300: '#67EDE0',
400: '#43E9D8',
500: '#1EE4D1',
600: '#17C3B2',
700: '#119184',
},
neutral: {
DEFAULT: '#1C1C1C',
100: '#FFFFFF',
200: '#F2F2F2',
300: '#B5B5B5',
400: '#787878',
500: '#3B3B3B',
600: '#1C1C1C',
700: '#000000',
},
},
animation: {
marquee: 'marquee 25s linear infinite',
marquee2: 'marquee2 25s linear infinite',
marquee3: 'marquee3 25s linear infinite',
},
keyframes: {
marquee: {
'0%': { transform: 'translateX(0%)' },
'100%': { transform: 'translateX(-100%)' },
},
marquee2: {
'0%': { transform: 'translateX(100%)' },
'100%': { transform: 'translateX(0%)' },
},
marquee3: {
'0%': { transform: 'translateX(200%)' },
'100%': { transform: 'translateX(100%)' },
},
},
},
},
// eslint-disable-next-line @typescript-eslint/no-require-imports
plugins: [require('@tailwindcss/typography')],
};