Skip to content

Commit

Permalink
fix: tailwind 950 color (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasvinclav committed Oct 20, 2023
1 parent 788ee80 commit c03b119
Showing 1 changed file with 18 additions and 21 deletions.
39 changes: 18 additions & 21 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
module.exports = {
content: [
"./src/**/*.{html,py,js}",
],
content: ["./src/**/*.{html,py,js}"],
media: false,
darkMode: "class",
theme: {
Expand All @@ -17,34 +15,35 @@ module.exports = {
600: "rgb(var(--color-primary-600) / <alpha-value>)",
700: "rgb(var(--color-primary-700) / <alpha-value>)",
800: "rgb(var(--color-primary-800) / <alpha-value>)",
900: "rgb(var(--color-primary-900) / <alpha-value>)"
}
900: "rgb(var(--color-primary-900) / <alpha-value>)",
950: "rgb(var(--color-primary-950) / <alpha-value>)",
},
},
fontSize: {
0: [0, 1],
xxs: ["11px", "14px"],
},
fontFamily: {
sans: ["Inter", "sans-serif"]
sans: ["Inter", "sans-serif"],
},
height: {
"9.5": "2.375rem",
9.5: "2.375rem",
},
minWidth: {
"sidebar": "18rem",
sidebar: "18rem",
},
spacing: {
"68": "17rem",
"128": "32rem",
68: "17rem",
128: "32rem",
},
transitionProperty: {
"height": "height",
"width": "width",
height: "height",
width: "width",
},
width: {
"4.5": "1.125rem",
"9.5": "2.375rem",
"sidebar": "18rem",
4.5: "1.125rem",
9.5: "2.375rem",
sidebar: "18rem",
},
},
},
Expand All @@ -53,10 +52,8 @@ module.exports = {
borderColor: ["checked", "focus-within", "hover"],
display: ["group-hover"],
overflow: ["hover"],
textColor: ["hover"]
}
textColor: ["hover"],
},
},
plugins: [
require('@tailwindcss/typography'),
]
}
plugins: [require("@tailwindcss/typography")],
};

0 comments on commit c03b119

Please sign in to comment.