-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (33 loc) · 1.02 KB
/
tailwind.config.js
File metadata and controls
33 lines (33 loc) · 1.02 KB
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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./components/**/*.{vue,js,ts}', './pages/**/*.{vue,js,ts}', './content/**/*.{md,vue}', './const/*.{ts,js}', './public/Images/*.svg'],
theme: {
extend: {
boxShadow: {
zt_shadow_two: '0px 0px 8px 0px rgba(0, 0, 0, 0.1)',
},
colors: {
zt_purple: '#9b26b6',
},
// fontFamily: {
// sans: ['Noto Sans', 'sans-serif']
// },
// fontFamily: {
// sans: ['NotoSans-Regular', 'sans-serif'],
// },
fontFamily: {
zt_regular: ['Inter-Regular'],
zt_medium: ['Inter-Medium'],
zt_semibold: ['Inter-SemiBold'],
zt_bold: ['Inter-Bold'],
zt_black: ['Inter-Black'],
zt_light: ['Inter-Light'],
zt_extra_light: ['Inter-ExtraLight'],
zt_extra_bold: ['Inter-ExtraBold'],
zt_thin: ['Inter-Thin'],
},
},
},
plugins: [],
safelist: ['text-yellow-500','text-fuchsia-500','text-red-400','text-blue-500','text-green-500'],
}