27 lines
646 B
JavaScript
27 lines
646 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
import relumetailwind from "@relume_io/relume-tailwind";
|
|
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
"./node_modules/@relume_io/relume-ui/dist/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
presets: [relumetailwind],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
"tech-navy": "#1d283a",
|
|
"acid-lime": "#cfff24",
|
|
"electric-violet": "#895af6",
|
|
"electric-green": "#00d949",
|
|
"cloud-white": "#f8fafc",
|
|
"neutral-dark": "#283c5e",
|
|
},
|
|
fontFamily: {
|
|
barlow: ["Barlow", "sans-serif"],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |