-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
48 lines (47 loc) · 1.11 KB
/
tailwind.config.ts
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
import plugin from 'tailwindcss/plugin';
import type { Config } from 'tailwindcss';
const config: Config = {
content: ['./app/**/{**,.client,.server}/**/*.{js,jsx,ts,tsx}'],
plugins: [
plugin(function ({ matchUtilities, theme }) {
matchUtilities(
{
'text-shadow': value => {
return {
textShadow: value,
};
},
},
{ values: theme('textShadow') },
);
}),
],
theme: {
extend: {
backgroundImage: {
'gradient-radial':
'radial-gradient(circle, rgba(152, 11, 238, 1) 0%, rgba(118, 15, 181, 1) 35%, rgba(58, 13, 85, 1) 100%)',
},
colors: {
layer: '#ffffff1a',
purple: {
DEFAULT: '#3a0d54',
dark: '#1f062e',
light: '#740fb3',
},
red: '#e74651be',
yellow: {
DEFAULT: '#ffcc00',
dark: '#CBA200',
},
},
fontFamily: {
display: ['Baloo', 'sans-serif'],
},
textShadow: {
DEFAULT: '0 2px 0 #000000, 0 2px 40px #000000',
},
},
},
};
export default config;