Skip to content

Instantly share code, notes, and snippets.

@Hikmahx
Created January 30, 2022 01:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hikmahx/b1040f89cd149d9f55bd61ed99e95530 to your computer and use it in GitHub Desktop.
Save Hikmahx/b1040f89cd149d9f55bd61ed99e95530 to your computer and use it in GitHub Desktop.
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
height: {
'50': '12.5rem',
'62' : '15.5rem'
},
width:{
'68': '17rem'
},
maxWidth: {
'xl': '33rem',
'4xl': "50rem"
},
fontSize:{
'4xl' : '2.5rem'
},
},
colors : {
'violet': '#674baf',
'red': '#ff5c7c',
'orange': '#ff8c66',
'yellow': '#f1c65b',
'blue': '#56c2e6',
'purple': '#7536d3',
'green': '#4acf81',
'light-gray': '#f2f2f2',
'very-light-gray': '#fafafa',
'grayish-blue': '#a3a5ae',
'very-dark-blue': '#4c4e61',
'transparent-white':'#ffffffbf',
'transparent': 'transparent',
'white': '#ffffff',
'black': '#000000'
},
fontFamily : {
'rubik': ['Rubik', 'sans-serif']
}
},
plugins: [],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment