Skip to content

Commit

Permalink
Resolving the tailwind.config file conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
Ritesh Hiremath authored and Ritesh Hiremath committed Oct 24, 2024
1 parent 0ccba67 commit a922405
Showing 1 changed file with 29 additions and 30 deletions.
59 changes: 29 additions & 30 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,81 +3,80 @@ module.exports = {
'./pages/**/*.{js,ts,jsx,tsx,md}',
'./components/**/*.{js,ts,jsx,tsx,md}',
],
darkMode: "class",
darkMode: 'class',
theme: {
screens: {
'sm': '640px',
sm: '640px',
// => @media (min-width: 640px) { ... }

'md': '768px',
md: '768px',
// => @media (min-width: 768px) { ... }

'lg': '1024px',
lg: '1024px',
// => @media (min-width: 1024px) { ... }

'xl': '1280px',
xl: '1280px',
// => @media (min-width: 1280px) { ... }

'2xl': '1536px',
// => @media (min-width: 1536px) { ... }
'ab1': '890px'

ab1: '890px',
},
fontFamily: {
'sans': ['Inter', 'ui-sans-serif', 'system-ui'],
'serif': ['ui-serif', 'Georgia'],
'mono': ['JetBrains Mono', 'monospace']
sans: ['Inter', 'ui-sans-serif', 'system-ui'],
serif: ['ui-serif', 'Georgia'],
mono: ['JetBrains Mono', 'monospace'],
},
fontSize: {
sm: '0.8rem',
base: '16px',
xl: '20px',
'h5': '20px',
'h4': '25px',
'h3': '35px',
'h2': '45px',
'h1': '60px',
'h1mobile': '35px',
'h2mobile': '28px',
'h3mobile': '25px',
'h4mobile': '22px',
'h5mobile': '20px'
h5: '20px',
h4: '25px',
h3: '35px',
h2: '45px',
h1: '60px',
h1mobile: '35px',
h2mobile: '28px',
h3mobile: '25px',
h4mobile: '22px',
h5mobile: '20px',
},

extend: {
backgroundImage: {
'gradient-radial': 'linear-gradient(72.68deg, #002CC4 28.97%, #5468FF 145.47%)',
'gradient-radial':
'linear-gradient(72.68deg, #002CC4 28.97%, #5468FF 145.47%)',
},
colors: {

white: '#ffffff',
black: '#000000',
primary: '#002CC4',
btnOrange: '#F47A08',
btnGold: '#AB9700',
startBlue: '#002CC4',
endBlue: '#5468FF',
linkBlue: '#3B82F6'
linkBlue: '#3B82F6',
},
gradientColorStopPositions: {
33: '145.47%',
},
lineHeight: {
'base': '24px',
'header': '74px',
base: '24px',
header: '74px',
},
boxShadow: {
'3xl': ' 0px 0px 20px 5px rgba(0, 0, 0, 0.05)',
'4xl': [
'0 35px 35px rgba(0, 0, 0, 0.25)',
'0 45px 65px rgba(0, 0, 0, 0.15)'
'0 45px 65px rgba(0, 0, 0, 0.15)',
],
'xl': ' 0px 6px 10px -4px rgba(0, 0, 0, 0.25);'
}
}
xl: ' 0px 6px 10px -4px rgba(0, 0, 0, 0.25);',
},
},
},
plugins: [],
}
};

/*
FONT WEIGHT
Expand Down

0 comments on commit a922405

Please sign in to comment.