-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
51 lines (50 loc) · 1.16 KB
/
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
44
45
46
47
48
49
50
51
/** @type {import('tailwindcss').Config} */
const plugin = require('tailwindcss/plugin')
module.exports = {
content: ['./web/**/*.{html,tsx}'],
theme: {
extend: {
textShadow: {
sm: '0 1px 2px var(--tw-shadow-color)',
DEFAULT: '0 2px 4px var(--tw-shadow-color)',
lg: '0 8px 16px var(--tw-shadow-color)',
},
fontFamily: {
body: ['Bai Jamjuree', 'sans-serif'],
sans: ['Bai Jamjuree', 'sans-serif'],
},
screens: {
xs: '768px',
sm: '1280px',
},
colors: {
background: '#090b10',
'background-lighter': '#0d1017',
purple: {
50: '#c8aad4',
100: '#c49acf',
200: '#bf80c8',
300: '#bb69c0',
400: '#b556b4',
500: '#aa4bae',
600: '#9840a0',
700: '#7f348b',
800: '#60286e',
900: '#401c4c',
},
},
},
},
plugins: [
plugin(function ({ matchUtilities, theme }) {
matchUtilities(
{
'text-shadow': (value) => ({
textShadow: value,
}),
},
{ values: theme('textShadow') }
)
}),
],
}