mirror of
https://github.com/frappe/books.git
synced 2024-12-23 03:19:01 +00:00
build(tailwind): don't purge, messes up css
This commit is contained in:
parent
ad3b41721d
commit
b7b9197024
@ -1,13 +1,14 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
|
purge: false,
|
||||||
theme: {
|
theme: {
|
||||||
fontFamily: {
|
fontFamily: {
|
||||||
sans: ['Inter', 'sans-serif']
|
sans: ['Inter', 'sans-serif'],
|
||||||
},
|
},
|
||||||
screens: {
|
screens: {
|
||||||
sm: '640px',
|
sm: '640px',
|
||||||
md: '768px',
|
md: '768px',
|
||||||
lg: '1024px',
|
lg: '1024px',
|
||||||
xl: '1280px'
|
xl: '1280px',
|
||||||
},
|
},
|
||||||
fontSize: {
|
fontSize: {
|
||||||
xs: '11px',
|
xs: '11px',
|
||||||
@ -17,55 +18,55 @@ module.exports = {
|
|||||||
xl: '18px',
|
xl: '18px',
|
||||||
'2xl': '20px',
|
'2xl': '20px',
|
||||||
'3xl': '24px',
|
'3xl': '24px',
|
||||||
'4xl': '28px'
|
'4xl': '28px',
|
||||||
},
|
},
|
||||||
extend: {
|
extend: {
|
||||||
maxHeight: {
|
maxHeight: {
|
||||||
'64': '16rem'
|
64: '16rem',
|
||||||
},
|
},
|
||||||
minWidth: {
|
minWidth: {
|
||||||
'40': '10rem',
|
40: '10rem',
|
||||||
'56': '14rem'
|
56: '14rem',
|
||||||
},
|
},
|
||||||
maxWidth: {
|
maxWidth: {
|
||||||
'32': '8rem',
|
32: '8rem',
|
||||||
'56': '14rem'
|
56: '14rem',
|
||||||
},
|
},
|
||||||
spacing: {
|
spacing: {
|
||||||
'7': '1.75rem',
|
7: '1.75rem',
|
||||||
'14': '3.5rem',
|
14: '3.5rem',
|
||||||
'18': '4.5rem',
|
18: '4.5rem',
|
||||||
'28': '7rem',
|
28: '7rem',
|
||||||
'72': '18rem',
|
72: '18rem',
|
||||||
'80': '20rem'
|
80: '20rem',
|
||||||
},
|
},
|
||||||
boxShadow: {
|
boxShadow: {
|
||||||
'outline-px': '0 0 0 1px rgba(66, 153, 225, 0.5)',
|
'outline-px': '0 0 0 1px rgba(66, 153, 225, 0.5)',
|
||||||
DEFAULT: '0 2px 4px 0 rgba(0, 0, 0, 0.05)',
|
DEFAULT: '0 2px 4px 0 rgba(0, 0, 0, 0.05)',
|
||||||
md: '0 0 2px 0 rgba(0, 0, 0, 0.10), 0 2px 4px 0 rgba(0, 0, 0, 0.08)',
|
md: '0 0 2px 0 rgba(0, 0, 0, 0.10), 0 2px 4px 0 rgba(0, 0, 0, 0.08)',
|
||||||
button: '0 0.5px 0 0 rgba(0, 0, 0, 0.08)'
|
button: '0 0.5px 0 0 rgba(0, 0, 0, 0.08)',
|
||||||
},
|
},
|
||||||
borderRadius: {
|
borderRadius: {
|
||||||
sm: '0.25rem', // 4px
|
sm: '0.25rem', // 4px
|
||||||
DEFAULT: '0.313rem', // 5px
|
DEFAULT: '0.313rem', // 5px
|
||||||
md: '0.375rem', // 6px
|
md: '0.375rem', // 6px
|
||||||
lg: '0.5rem', // 8px
|
lg: '0.5rem', // 8px
|
||||||
xl: '0.75rem' // 12px
|
xl: '0.75rem', // 12px
|
||||||
},
|
},
|
||||||
colors: {
|
colors: {
|
||||||
brand: '#2490EF',
|
brand: '#2490EF',
|
||||||
'brand-100': '#f4f9ff',
|
'brand-100': '#f4f9ff',
|
||||||
black: '#112B42',
|
black: '#112B42',
|
||||||
gray: {
|
gray: {
|
||||||
'100': '#f4f4f6',
|
100: '#f4f4f6',
|
||||||
'200': '#e9ebed',
|
200: '#e9ebed',
|
||||||
'300': '#dfe1e2',
|
300: '#dfe1e2',
|
||||||
'400': '#cccfd1',
|
400: '#cccfd1',
|
||||||
'500': '#b7bfc6',
|
500: '#b7bfc6',
|
||||||
'600': '#a1abb4',
|
600: '#a1abb4',
|
||||||
'700': '#9fa5a8',
|
700: '#9fa5a8',
|
||||||
'800': '#7f878a',
|
800: '#7f878a',
|
||||||
'900': '#415668'
|
900: '#415668',
|
||||||
},
|
},
|
||||||
red: {
|
red: {
|
||||||
100: '#fff5f5',
|
100: '#fff5f5',
|
||||||
@ -76,7 +77,7 @@ module.exports = {
|
|||||||
600: '#e53e3e',
|
600: '#e53e3e',
|
||||||
700: '#c53030',
|
700: '#c53030',
|
||||||
800: '#9b2c2c',
|
800: '#9b2c2c',
|
||||||
900: '#742a2a'
|
900: '#742a2a',
|
||||||
},
|
},
|
||||||
orange: {
|
orange: {
|
||||||
100: '#fffaf0',
|
100: '#fffaf0',
|
||||||
@ -87,7 +88,7 @@ module.exports = {
|
|||||||
600: '#dd6b20',
|
600: '#dd6b20',
|
||||||
700: '#c05621',
|
700: '#c05621',
|
||||||
800: '#9c4221',
|
800: '#9c4221',
|
||||||
900: '#7b341e'
|
900: '#7b341e',
|
||||||
},
|
},
|
||||||
yellow: {
|
yellow: {
|
||||||
100: '#fffff0',
|
100: '#fffff0',
|
||||||
@ -98,7 +99,7 @@ module.exports = {
|
|||||||
600: '#d69e2e',
|
600: '#d69e2e',
|
||||||
700: '#b7791f',
|
700: '#b7791f',
|
||||||
800: '#975a16',
|
800: '#975a16',
|
||||||
900: '#744210'
|
900: '#744210',
|
||||||
},
|
},
|
||||||
green: {
|
green: {
|
||||||
100: '#f0fff4',
|
100: '#f0fff4',
|
||||||
@ -109,7 +110,7 @@ module.exports = {
|
|||||||
600: '#38a169',
|
600: '#38a169',
|
||||||
700: '#2f855a',
|
700: '#2f855a',
|
||||||
800: '#276749',
|
800: '#276749',
|
||||||
900: '#22543d'
|
900: '#22543d',
|
||||||
},
|
},
|
||||||
teal: {
|
teal: {
|
||||||
100: '#e6fffa',
|
100: '#e6fffa',
|
||||||
@ -120,7 +121,7 @@ module.exports = {
|
|||||||
600: '#319795',
|
600: '#319795',
|
||||||
700: '#2c7a7b',
|
700: '#2c7a7b',
|
||||||
800: '#285e61',
|
800: '#285e61',
|
||||||
900: '#234e52'
|
900: '#234e52',
|
||||||
},
|
},
|
||||||
blue: {
|
blue: {
|
||||||
100: '#ebf8ff',
|
100: '#ebf8ff',
|
||||||
@ -131,7 +132,7 @@ module.exports = {
|
|||||||
600: '#3182ce',
|
600: '#3182ce',
|
||||||
700: '#2b6cb0',
|
700: '#2b6cb0',
|
||||||
800: '#2c5282',
|
800: '#2c5282',
|
||||||
900: '#2a4365'
|
900: '#2a4365',
|
||||||
},
|
},
|
||||||
indigo: {
|
indigo: {
|
||||||
100: '#ebf4ff',
|
100: '#ebf4ff',
|
||||||
@ -142,7 +143,7 @@ module.exports = {
|
|||||||
600: '#5a67d8',
|
600: '#5a67d8',
|
||||||
700: '#4c51bf',
|
700: '#4c51bf',
|
||||||
800: '#434190',
|
800: '#434190',
|
||||||
900: '#3c366b'
|
900: '#3c366b',
|
||||||
},
|
},
|
||||||
purple: {
|
purple: {
|
||||||
100: '#faf5ff',
|
100: '#faf5ff',
|
||||||
@ -153,7 +154,7 @@ module.exports = {
|
|||||||
600: '#805ad5',
|
600: '#805ad5',
|
||||||
700: '#6b46c1',
|
700: '#6b46c1',
|
||||||
800: '#553c9a',
|
800: '#553c9a',
|
||||||
900: '#44337a'
|
900: '#44337a',
|
||||||
},
|
},
|
||||||
pink: {
|
pink: {
|
||||||
100: '#fff5f7',
|
100: '#fff5f7',
|
||||||
@ -164,15 +165,15 @@ module.exports = {
|
|||||||
600: '#d53f8c',
|
600: '#d53f8c',
|
||||||
700: '#b83280',
|
700: '#b83280',
|
||||||
800: '#97266d',
|
800: '#97266d',
|
||||||
900: '#702459'
|
900: '#702459',
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
variants: {
|
variants: {
|
||||||
margin: ['responsive', 'first', 'last', 'hover', 'focus'],
|
margin: ['responsive', 'first', 'last', 'hover', 'focus'],
|
||||||
backgroundColor: ['responsive', 'first', 'hover', 'focus', 'focus-within'],
|
backgroundColor: ['responsive', 'first', 'hover', 'focus', 'focus-within'],
|
||||||
display: ['group-hover']
|
display: ['group-hover'],
|
||||||
},
|
},
|
||||||
plugins: []
|
plugins: [],
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user