34 lines
630 B
JavaScript
34 lines
630 B
JavaScript
|
/*
|
||
|
** TailwindCSS Configuration File
|
||
|
**
|
||
|
** Docs: https://tailwindcss.com/docs/configuration
|
||
|
** Default: https://github.com/tailwindcss/tailwindcss/blob/master/stubs/defaultConfig.stub.js
|
||
|
*/
|
||
|
module.exports = {
|
||
|
theme: {
|
||
|
colors: {
|
||
|
'black': '#000',
|
||
|
'white': '#fff',
|
||
|
|
||
|
'purple-0': '#04254e',
|
||
|
'purple-1': '#5954a4',
|
||
|
'purple-2': '#8a54a2',
|
||
|
'purple-3': '#8ad5eb',
|
||
|
},
|
||
|
|
||
|
screens: {
|
||
|
'sm': '660px',
|
||
|
'md': '768px',
|
||
|
'lg': '1024px',
|
||
|
'xl': '1280px',
|
||
|
'fhd': '1670px',
|
||
|
'wqhd': '2480px',
|
||
|
|
||
|
'break-header': '950px',
|
||
|
}
|
||
|
},
|
||
|
variants: {},
|
||
|
plugins: [],
|
||
|
|
||
|
}
|