-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
76 lines (74 loc) · 1.89 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import daisyui from 'daisyui';
import defaultTheme from 'tailwindcss/defaultTheme';
/** @type {import('tailwindcss').Config} */
const config = {
content: ['./src/**/*.{html,ts,tsx}'],
theme: {
extend: {
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
},
screens: {
xs: '480px',
},
colors: {
anzac: {
50: '#fcfaea',
100: '#f7f2ca',
200: '#f1e497',
300: '#e9cf5b',
400: '#e1bb34',
500: '#d1a321',
600: '#b47f1a',
700: '#905d18',
800: '#784a1b',
900: '#663f1d',
950: '#3b200d',
},
'black-pearl': {
50: '#e7f5fd',
100: '#cfe8fc',
200: '#88ccf6',
300: '#38b0f0',
400: '#1290d3',
500: '#116fa2',
600: '#085687',
700: '#074469',
800: '#062437',
900: '#05141f',
950: '#030c13',
},
},
backgroundImage: {
'overhead': "url('assets/icons/Overhead_Background.png')"
}
},
container: {
center: true,
screens: {
md: '768px',
},
padding: '20px',
},
},
plugins: [daisyui],
daisyui: {
base: true, // applies background color and foreground color for root element by default
styled: true, // include daisyUI colors and design decisions for all components
logs: true, // Shows info about daisyUI version and used config in the console when building your CSS
darkTheme: 'dark', // name of one of the included themes for dark mode
themes: [
{
dark: {
'base-100': '#030C13',
'base-content': '#cfe8fc',
primary: '#e1bb34',
'primary-content': '#030c13',
neutral: '#05141f',
'neutral-content': '#88ccf6',
},
},
],
},
};
export default config;