generated from muhwyndhamhp/gotes-mx
-
Notifications
You must be signed in to change notification settings - Fork 10
/
tailwind.config.js
executable file
·41 lines (40 loc) · 1.01 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
import { screens as _screens } from 'tailwindcss/defaultTheme';
import plugin from 'tailwindcss/plugin';
export const darkMode = 'class';
export const content = ["./pub/**/*.templ", "./src/**/*.js"];
export const theme = {
screens: {
'xs': '320px',
'sm': '640px',
'md': '768px',
'itn': '880px',
'lg': '1024px',
'itn2':'1150px',
'xl': '1280px',
'2xl': '1536px',
'3xl': '1920px',
'4xl': '2560px',
},
extend: {},
};
export const plugins = [
plugin(function({ addBase }) {
addBase({
'html': {
fontSize: "16px", // Default font size, which is typically 16px
'@screen md': {
fontSize: "14px", // Font size on medium (md) breakpoint, which is typically 14px
},
},
});
}),
require('@tailwindcss/typography'),
require('daisyui')
];
export const daisyui = {
themes: [
"cupcake",
"sunset",
],
darkTheme: "sunset",
};