-
Notifications
You must be signed in to change notification settings - Fork 158
/
tailwind.config.js
56 lines (56 loc) · 1.32 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
44
45
46
47
48
49
50
51
52
53
54
55
56
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
'neutral-999': '#090909',
},
textColor: {
'iris-blue': '#1d9bf0',
'iris-green': '#34ba7c',
'iris-orange': '#ffa600',
'iris-red': '#f81780',
'iris-purple': '#8e44ad',
},
backgroundColor: {
'iris-blue': '#1d9bf0',
'iris-green': '#34ba7c',
'iris-orange': '#ffa600',
'iris-red': '#f81780',
'iris-purple': '#8e44ad',
},
outlineColor: {
'iris-purple': '#8e44ad',
},
spacing: {
px: '1px',
},
},
},
daisyui: {
themes: [
{
iris: {
'base-100': '#000000',
'base-content': '#ffffff',
'color-scheme': 'dark',
primary: '#603285',
secondary: '#8A4EBC',
accent: '#BB97D8',
neutral: '#ffffff',
info: '#1d9bf0',
success: '#34ba7c',
warning: '#ffa600',
error: '#f81780',
blue: '#1d9bf0',
green: '#34ba7c',
orange: '#ffa600',
red: '#f81780',
purple: '#8e44ad',
},
},
],
},
plugins: [require('@tailwindcss/typography'), require('daisyui')],
};