forked from TonDevWallet/TonDevWallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
38 lines (34 loc) · 968 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
36
37
38
// const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
mode: 'jit',
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
sans: ['Mulish', 'Open Sans', 'sans-serif'],
},
colors: {
// accent: '#34495e',
accent: 'var(--color-accent)',
highlight: '#0088CC',
white: '#ffffff',
foreground: 'rgb(var(--color-foreground-rgb) / <alpha-value>)',
background: 'rgb(var(--color-background-rgb) / <alpha-value>)',
// 'accent-light': 'var(--color-accent-light)',
'accent-light': 'rgb(var(--color-accent-light-rgb) / <alpha-value>)',
'window-background': 'var(--color-window-background)',
},
opacity: {
15: '.15',
},
keyframes: {
appear: {
'0%': { opacity: 0 },
'100%': { opacity: 1 },
},
},
},
},
variants: {},
plugins: [],
}