| 1234567891011121314151617181920212223242526272829303132333435363738 |
- /** @type {import('tailwindcss').Config} */
- const { nextui } = require("@nextui-org/react");
- export default {
- content: [
- "./src/**/*.{js,ts,jsx,tsx}",
- "./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
- ],
- theme: {
- extend: {
- colors: {
- 'root-primary': '#171717',
- 'root-secondary': '#262626',
- 'hyperlink': '#007AFF',
- 'danger': '#EF3744',
- },
- },
- },
- darkMode: "class",
- plugins: [
- nextui({
- defaultTheme: "dark",
- layout: {
- radius: {
- small: "5px",
- large: "20px",
- },
- },
- themes: {
- dark: {
- colors: {
- primary: "#4465DB",
- },
- }
- }
- }),
- require('@tailwindcss/typography'),
- ],
- };
|