quivr/frontend/tailwind.config.js
Matthieu Jacq e4810ade0c
feat: Homepage screen 1 content (#1414)
# Description

Epic #1232 
Issue #1409 

## Checklist before requesting a review

## Screenshots (if appropriate):
<img width="1512" alt="image"
src="https://github.com/StanGirard/quivr/assets/67386567/0543102c-59f1-4957-b2a1-2b017088172a">

<img width="426" alt="image"
src="https://github.com/StanGirard/quivr/assets/67386567/932e3f24-b142-4606-854b-5f2821991e8b">
2023-10-17 16:31:05 +02:00

30 lines
821 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./lib/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
colors: {
black: "#11243E",
primary: "#7A27FD",
"chat-bg-gray": "#D9D9D9",
"msg-gray": "#9B9B9B",
"msg-header-gray": "#8F8F8F",
"msg-purple": "#E0DDFC",
"onboarding-yellow-bg": "#F6EFDE",
},
},
},
plugins: [require("@tailwindcss/typography")],
};