mirror of
https://github.com/t2linux/web.git
synced 2026-04-30 13:49:14 -07:00
27 lines
438 B
JavaScript
27 lines
438 B
JavaScript
module.exports = {
|
|
purge: [
|
|
'./src/**/*.vue'
|
|
],
|
|
darkMode: false, // or 'media' or 'class'
|
|
theme: {
|
|
extend: {
|
|
fontSize: {
|
|
hero: "66px",
|
|
section: "40px",
|
|
},
|
|
lineHeight: {
|
|
hero: "85px",
|
|
section: "50px",
|
|
},
|
|
backgroundColor: {
|
|
neutral: "#7663E8",
|
|
"neutral-600": "#7763e8c2",
|
|
},
|
|
},
|
|
},
|
|
variants: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
};
|