Skip to content

Commit

Permalink
module export in tailwind conifg
Browse files Browse the repository at this point in the history
  • Loading branch information
Scharfcsh committed Dec 19, 2024
1 parent 9847144 commit 35c833d
Showing 1 changed file with 21 additions and 23 deletions.
44 changes: 21 additions & 23 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,27 +1,25 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{js,jsx}"],
mode: "jit",
theme: {
extend: {
colors: {
primary: "#00040f",
secondary: "#00f6ff",
dimWhite: "rgba(255, 255, 255, 0.7)",
dimBlue: "rgba(9, 151, 124, 0.1)",
},
fontFamily: {
poppins: ["Poppins", "sans-serif"],
},
export const content = ["./index.html", "./src/**/*.{js,jsx}"];
export const mode = "jit";
export const theme = {
extend: {
colors: {
primary: "#00040f",
secondary: "#00f6ff",
dimWhite: "rgba(255, 255, 255, 0.7)",
dimBlue: "rgba(9, 151, 124, 0.1)",
},
screens: {
xs: "480px",
ss: "620px",
sm: "768px",
md: "1060px",
lg: "1200px",
xl: "1700px",
fontFamily: {
poppins: ["Poppins", "sans-serif"],
},
},
plugins: [],
};
screens: {
xs: "480px",
ss: "620px",
sm: "768px",
md: "1060px",
lg: "1200px",
xl: "1700px",
},
};
export const plugins = [];

0 comments on commit 35c833d

Please sign in to comment.