-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
44 lines (35 loc) · 1000 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./public/**/*.{html,js}', './src/**/*.{html,js}'],
theme: {
extend: {
fontFamily: {
roboto: ['Roboto Mono', 'mono'],
milk: ['milk', 'serif'],
},
boxShadow: {
'boxy': '4px 4px 0px 0px rgba(0, 0, 0, 25%)',
},
},
},
plugins: [
require("daisyui"),
],
daisyui: {
themes: [
{
mytheme: {
"base-100": "#fbfbfe", //white
"base-200": "#cfebf7", //light blue for bg
"base-300": "#ffeda8", //light yellow for bg
"primary": "#161a35", //text colour, blueish
"secondary": "#000", //text colour, black
"accent": "#a2d9f0", //moji blue accent
"accent-content": "#fede65", //moji yellow, like the sun
"neutral": "#a7dbf0", //how we do it: 2) vision planning
"info": "#fce488", //how we do it: 4) develop
},
},
],
},
}