-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
43 lines (40 loc) · 995 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
39
40
41
42
43
/** @type {import('tailwindcss').Config} \*/
const defaultTheme = require('tailwindcss/defaultTheme');
const plugin = require('tailwindcss/plugin');
const config = {
content: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,tsx,jsx}'],
theme: {
extend: {
colors: {
primary: '#FFFFFF',
secondary: '#000000',
accent: '#FFD915',
background: '#000000',
'background-modal': '#131313',
fail: '#E53200',
success: '#00A66F',
warning: '#FF9900'
},
fontFamily: {
aeonik: ['var(--font-aeonik)', 'Aeonik', ...defaultTheme.fontFamily.sans],
mono: ['Aeonik Mono', ...defaultTheme.fontFamily.mono]
}
}
},
plugins: [
require('@tailwindcss/forms'),
require('tailwindcss-animate'),
plugin(function ({addUtilities}) {
addUtilities({
'.scrollbar-none': {
'-ms-overflow-style': 'none',
'scrollbar-width': 'none',
'&::-webkit-scrollbar': {
display: 'none'
}
}
});
})
]
};
export default config;