this repo has no description
1import type { Config } from "tailwindcss";
2
3const config: Config = {
4 mode: "jit",
5 darkMode: "class",
6 content: [
7 "./src/**/**/*.{js,ts,jsx,tsx,html,mdx}",
8 "./src/**/*.{js,ts,jsx,tsx,html,mdx}",
9 "./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
10 "./src/components/**/*.{js,ts,jsx,tsx,mdx}",
11 "./src/app/**/*.{js,ts,jsx,tsx,mdx}",
12 ],
13 theme: {
14 // screens: { md: { max: "1050px" }, sm: { max: "550px" } },
15
16 extend: {
17 colors: {
18 bgGrey: "#303030",
19 blue: { 900: "#003da5" },
20 blue_gray: { 400: "#7c878e", 900: "#2f2f2f" },
21 orange: { 600: "#ed8b00" },
22 red: { 700: "#da291c" },
23 teal: { 800: "#00843d" },
24 white: { a700: "#ffffff" },
25 },
26 boxShadow: {},
27 },
28 },
29 plugins: [require("@tailwindcss/forms")],
30};
31export default config;