-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.mjs
50 lines (48 loc) · 986 Bytes
/
tailwind.config.mjs
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
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
const selfCustomColors = {
brand: {
DEFAULT: '#813c86',
},
black: {
DEFAULT: '#212121',
},
gray: {
DEFAULT: '#565656',
},
silver: {
DEFAULT: '#ececec',
},
warn: {
DEFAULT: '#f59e0b',
},
link: {
DEFAULT: '#0ea5e9',
},
}
export default {
mode: 'jit',
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
purge: {
enabled: true,
content: ['./src/**/*.{html,js,svelte,ts}', './node_modules/flowbite/**/*.js'],
},
theme: {
screens: {
lg: { max: '2560px' },
sm: { max: '640px' },
md: { max: '768px' },
tiny: { min: '768px' },
},
colors: { ...colors, ...selfCustomColors },
extend: {
boxShadow: {
'custom-white': '8px 8px 20px 2px #ebebeb;',
'custom-white-xl': '8px 8px 30px 6px #c3c3c3;',
'custom-dark': '8px 8px 20px 2px #212121;',
'custom-dark-xl': '8px 8px 20px 2px #363636;',
}
},
},
plugins: [],
}