-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
42 lines (41 loc) · 1.13 KB
/
tailwind.config.cjs
File metadata and controls
42 lines (41 loc) · 1.13 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
34
35
36
37
38
39
40
41
42
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors');
module.exports = {
content: ['./index.html', './src/**/*.{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',
},
backgroundImage: {
'mobile-preview': "url('/src/assets/mobile.svg')"
}
},
},
plugins: [require('@tailwindcss/forms')],
};