Skip to content

Instantly share code, notes, and snippets.

@Karnak19
Last active December 14, 2021 18:11
Show Gist options
  • Save Karnak19/d2bbf42a151032e3baf84577f89a62f2 to your computer and use it in GitHub Desktop.
Save Karnak19/d2bbf42a151032e3baf84577f89a62f2 to your computer and use it in GitHub Desktop.
Moncarnet
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
const colors = require("tailwindcss/colors");
module.exports = {
content: ["./src/**/*.{jsx,tsx}"]
theme: {
colors: {
primary: {
DEFAULT:"#009B9B",
hovered:"#006666",
focus: "#00E0E0"
},
background: "#F6F8FF",
text: {
DEFAULT: "#272D2D",
darker: "#131616"
},
error: color.red,
warning: color.amber
},
container: {
center:true
},
screens: {
lg: "1024px"
},
fontFamily: {
"inter": ["Inter", "Arial", "sans-serif"],
"montserrat": ["Montserrat", "Arial", "sans-serif"]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment