radiquum.github.io/tailwind.config.js

15 lines
No EOL
290 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html"],
theme: {
extend: {
colors: {
'bg-pink': '#FF478B',
'bg-blue': '#298FF5',
'bg-black': '#1E1E1E',
'bg-gray': '#484848'
},
},
},
plugins: [],
}