-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (41 loc) · 857 Bytes
/
tailwind.config.js
File metadata and controls
41 lines (41 loc) · 857 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
crimson: '#DC143C',
purple: '#9333EA',
'gray-dark': '#404040',
'gray-mid': '#808080',
'gray-light': '#D4D4D4',
'gray-bg': '#F5F5F5',
},
},
},
plugins: [
require('daisyui'),
],
daisyui: {
themes: [
{
medsync: {
"primary": "#0A0A0A",
"secondary": "#DC143C",
"accent": "#9333EA",
"neutral": "#404040",
"base-100": "#FFFFFF",
"base-200": "#F5F5F5",
"base-300": "#D4D4D4",
"info": "#808080",
"success": "#0A0A0A",
"warning": "#9333EA",
"error": "#DC143C",
},
},
],
},
}