-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (34 loc) · 812 Bytes
/
tailwind.config.js
File metadata and controls
35 lines (34 loc) · 812 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
mode: 'jit',
purge: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
content: [
// "./node_modules/flowbite/**/*.js"
],
theme: {
extend: {},
screens: {
'xxs': '360px',
'xs': '475px',
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
'2xl': '1536px',
'3xl': '1920px'
}
},
fontFamily: {
sans: ['Roboto', "sans-serif"],
rubik: ['Rubik', "sans-serif"],
montserrat: ['Montserrat', "sans-serif"],
quicksand: ['Quicksand', "sans-serif"],
bitter: ['Bitter', "serif"],
literata: ['Literata', "serif"],
robotoslab: ['"Roboto Slab"', "serif"],
},
plugins: [require("daisyui")],
daisyui: {
themes: ["cupcake", "halloween"],
},
}