-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
43 lines (42 loc) · 1.09 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
// https://tailwindcss.com/docs/guides/vite#vue
import forms from '@tailwindcss/forms';
import colors from 'tailwindcss/colors';
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./src/frontend/**/*.{vue,js,ts,jsx,tsx}",
],
safelist: ['bg-green-400', 'green-400', 'focus:ring-green-400', 'cursor-default'],
theme: {
extend: {
colors: {
tertiary: '#649ABB',
accent: {
DEFAULT: '#39CCFB',
one: '#FF7070',
green: '#34D399',
orange: '#FB923C',
gray: '#E2E8F0',
pink: '#EC4899'
},
error: colors.red['500'],
red: colors.red,
green: colors.green,
purple: '#B88C9E',
black: '#2E2D2C',
neutral: '#F1F0EA',
transparent: 'transparent',
current: 'currentColor',
white: colors.white,
gray: colors.gray,
slate: colors.slate,
blue: colors.blue,
yellow: colors.yellow,
indigo: colors.indigo,
app_gray: '#F9FAFB',
app_green: '#16A34A',
},
},
},
plugins: [forms],
}