coracle/tailwind.config.cjs

21 lines
380 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",
2022-11-24 19:47:03 +00:00
black: "#0f0f0e",
2022-11-23 01:28:33 +00:00
white: "#FFFCF2",
accent: "#EB5E28",
light: "#CCC5B9",
2022-11-24 19:47:03 +00:00
medium: "#403D39",
dark: "#252422",
2022-11-23 01:28:33 +00:00
},
},
plugins: [],
}