mirror of
https://github.com/iptv-org/iptv-org.github.io.git
synced 2025-05-12 10:00:07 -04:00
22 lines
418 B
JavaScript
22 lines
418 B
JavaScript
module.exports = {
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
flexBasis: {
|
|
88: '22rem'
|
|
},
|
|
transitionProperty: {
|
|
width: 'width'
|
|
},
|
|
colors: {
|
|
primary: {
|
|
light: '#2f4368',
|
|
default: '#293b5b',
|
|
dark: '#253552'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
plugins: [require('@tailwindcss/line-clamp')]
|
|
}
|