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
| /** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme')
const colors = require('tailwindcss/colors')
module.exports = {
content: ["./src/Web.hs"],
theme: {
extend: {
fontFamily: {
'sans': ['Inter', ...defaultTheme.fontFamily.sans],
},
colors: {
...colors,
orange: '#F37046',
orangel: '#f58966',
green: '#0CAC6C',
greend: '#098654',
blue: '#1483ED',
beige: '#e6e2d7',
white: '#ffffff',
black: '#000000',
}
},
colors: {
},
},
plugins: [],
}
|