2022-11-06 17:19:13 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
|
|
|
content: ["./**/*.{html,js}"],
|
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
colors: {
|
2022-11-06 17:38:49 +00:00
|
|
|
'co-blue': '#00727e',
|
2022-11-06 17:19:13 +00:00
|
|
|
'co-lightblue': '#907eff',
|
2022-11-06 17:38:49 +00:00
|
|
|
'co-red': '#de1581',
|
2022-11-06 17:19:13 +00:00
|
|
|
'co-green': '#6cc11f',
|
|
|
|
'co-yellow': '#ffdd00',
|
|
|
|
'co-orange': 'ff5300',
|
|
|
|
},
|
|
|
|
borderRadius: {
|
|
|
|
'co': '40%',
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
require('@tailwindcss/forms'),
|
|
|
|
],
|
|
|
|
}
|