You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
424 B
JavaScript
23 lines
424 B
JavaScript
module.exports = {
|
|
content: [
|
|
'./**/*.html',
|
|
'./index.html',
|
|
'./*.html'
|
|
],
|
|
darkMode: true,
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'mycol0': '#200f4c',
|
|
//'mycol': '#8870ff',
|
|
'mycol': '#8a97ff',
|
|
'mycol2': '#161524',
|
|
},
|
|
animation: {
|
|
wiggle: 'wiggle 1s ease-in-out infinite',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|