mirror of
https://github.com/iptv-org/iptv-org.github.io.git
synced 2025-05-11 17:40:05 -04:00
23 lines
437 B
JavaScript
23 lines
437 B
JavaScript
module.exports = {
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
flexBasis: {
|
|
88: '22rem'
|
|
},
|
|
transitionProperty: {
|
|
width: 'width'
|
|
},
|
|
colors: {
|
|
primary: {
|
|
400: '#61a5fa',
|
|
500: '#3b82f6',
|
|
600: '#2664ec',
|
|
700: '#1d4ed8'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
plugins: [require('@tailwindcss/line-clamp')]
|
|
}
|