coracle/tailwind.config.cjs
Jonathan Staab 2b48a59c85 First commit
2022-11-22 17:28:33 -08:00

20 lines
355 B
JavaScript

/** @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: [],
}