-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
41 lines (38 loc) · 963 Bytes
/
tailwind.config.cjs
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} */
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
darkMode: 'class',
content: [
'./src/**/*.{html,js,svelte,ts}',
"./node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}",
],
theme: {
extend: {
colors: {
darkish: '#282828',
darkshine: '#151F29',
sky: '#87CEEB',
},
fontFamily: {
raleway: ['Raleway', 'sans-serif'],
gloria: ['Gloria Hallelujah', 'cursive'],
butterfly: ['Butterfly', 'cursive'],
yippy: ['Yippy Skippy', 'sans-serif'],
semicasual: ['Semicasual', 'sans-serif'],
informal: ['InFormal', 'sans-serif'],
barlow: ['Barlow-Condensed', 'sans-serif'],
pixel: ['BestTen', 'PublicPixel', 'sans-serif'],
},
},
screens: {
'xs': '375px',
...defaultTheme.screens,
}
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('flowbite/plugin')
],
darkMode: 'class',
}