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