forked from pyrohost/pyrodactyl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
31 lines (29 loc) · 966 Bytes
/
tailwind.config.cjs
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
const colors = require('tailwindcss/colors');
// I'm literally so smart :3
delete colors['lightBlue'];
delete colors['warmGray'];
delete colors['trueGray'];
delete colors['coolGray'];
delete colors['blueGray'];
module.exports = {
content: ['./resources/views/**/*.blade.php', './resources/scripts/**/*.{js,ts,tsx}'],
theme: {
extend: {
fontFamily: {
jakarta: ['"Plus Jakarta Sans"', 'sans-serif'],
},
colors: {
...colors,
transparent: 'transparent',
current: 'currentColor',
black: '#000000',
brandGrad: 'radial-gradient(109.26% 109.26% at 49.83% 13.37%, #FF343C 0%, #F06F53 100%)',
brand: '#fa4e49',
},
transitionDuration: {
250: '250ms',
},
},
},
plugins: [require('tailwindcss-animate'), require("tailwindcss-inner-border")],
};