mirror of
https://github.com/feeddeck/feeddeck.git
synced 2026-03-11 17:47:47 -05:00
22 lines
468 B
JavaScript
22 lines
468 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: "#49d3b4",
|
|
onprimary: "#1f2229",
|
|
secondary: "#353a46",
|
|
onsecondary: "#e2e4e9",
|
|
background: "#1f2229",
|
|
onbackground: "#e2e4e9",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|