coracle/tailwind.config.cjs

20 lines
355 B
JavaScript
Raw Normal View History

2022-11-23 01:28:33 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,svelte}",
],
theme: {
extend: {},
colors: {
transparent: "transparent",
black: "#252422",
white: "#FFFCF2",
accent: "#EB5E28",
light: "#CCC5B9",
dark: "#403D39",
},
},
plugins: [],
}