forked from YaStaer/CallistoDAO_UI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
35 lines (34 loc) · 976 Bytes
/
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
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./utils/**/*.{js,ts,jsx,tsx}'
],
theme: {
extend: {
fontFamily: {
coiny: ['Coiny', ...defaultTheme.fontFamily.sans]
},
colors: {
'brand-common': '#808080',
'brand-rare': '#00C2CC',
'brand-epic': '#C400FF',
'brand-gold': '#FFD700',
'brand-red': 'var(--clr-red)',
'brand-greene': 'var(--clr-greene)',
'brand-purple': 'var(--clr-purple)',
'brand-pink': 'var(--clr-pink)',
'brand-yellow': 'var(--clr-yellow)',
'brand-blue': 'var(--clr-blue)',
'brand-green': 'var(--clr-green)',
'brand-light': 'var(--clr-light)',
'brand-background': 'var(--clr-background)'
},
animation: {
'pulse-slow': 'pulse 10s linear infinite'
}
}
},
plugins: []
}