-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
58 lines (54 loc) · 1.31 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
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
const defaultTheme = require('tailwindcss/defaultTheme')
export default {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
"./node_modules/tailwind-datepicker-react/dist/**/*.js",
],
darkMode: 'class',
theme: {
screens: {
'xs': '475px',
...defaultTheme.screens,
},
colors: {
"dark-purple":"#081a51",
"light-white":"rgba(255,255,255,0.17)",
transparent: 'transparent',
current: 'currentColor',
darkTheme: "#000000",
darkBlend: "#000",
lightBlend: "#fff",
darkHover: "#1d2969",
lightTheme: "#FFFFFF",
iconColor: "#FFFF00",
eliteBlue: "#082f49",
businessName: "#0CF348",
...colors,
},
extend: {
'animation': {
'text':'text 5s ease infinite',
},
'keyframes': {
'text': {
'0%, 100%': {
'background-size':'200% 200%',
'background-position': 'left center'
},
'50%': {
'background-size':'200% 200%',
'background-position': 'right center'
}
},
}
},
},
variants: {
extend: {
},
},
plugins: [
],
}