forked from TeamRaccoons/Unified-Wallet-Kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
62 lines (59 loc) · 1.52 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
const plugin = require('tailwindcss/plugin')
/** @type {import('tailwindcss').Config} */
module.exports = {
theme: {
extend: {
colors: {
'jupiter-input-light': '#EBEFF1',
'jupiter-bg': '#3A3B43',
'jupiter-dark-bg': '#292A33',
'jupiter-jungle-green': '#24AE8F',
'jupiter-primary': '#FBA43A',
warning: '#FAA63C',
'v2-primary': 'rgba(199, 242, 132, 1)',
'v2-background': '#304256',
'v2-background-dark': '#19232D',
'v2-lily': '#E8F9FF',
'v3-bg': 'rgba(28, 41, 54, 1)',
'v3-primary': '#c7f284',
},
transitionProperty: {
'height': 'height',
'max-height': 'max-height',
},
keyframes: {
'fade-in': {
'0%': {
opacity: '0.2',
},
'100%': {
opacity: '1',
},
},
'fade-out': {
'0%': {
opacity: '1',
},
'100%': {
opacity: '0',
},
},
},
animation: {
'fade-in': 'fade-in 0.15s ease-in-out',
'fade-out': 'fade-out 0.15s ease-out',
shine: 'shine 3.5s linear infinite',
hue: 'hue 10s infinite linear',
},
backgroundImage: {
'v2-text-gradient': 'linear-gradient(247.44deg, #C7F284 13.88%, #00BEF0 99.28%)',
}
},
},
variants: {
extend: {
// Enable dark mode, hover, on backgroundImage utilities
backgroundImage: ['dark', 'hover', 'focus-within', 'focus'],
},
},
}