2023-06-20 17:50:20 +05:30
|
|
|
const fs = require('fs');
|
|
|
|
const colors = JSON.parse(
|
|
|
|
fs.readFileSync('colors.json', { encoding: 'utf-8' })
|
|
|
|
);
|
|
|
|
|
2019-10-03 19:16:12 +05:30
|
|
|
module.exports = {
|
2021-12-07 13:18:57 +05:30
|
|
|
purge: false,
|
2019-10-03 19:16:12 +05:30
|
|
|
theme: {
|
2019-10-04 23:25:28 +05:30
|
|
|
fontFamily: {
|
2021-12-07 13:18:57 +05:30
|
|
|
sans: ['Inter', 'sans-serif'],
|
2019-11-19 23:04:45 +05:30
|
|
|
},
|
2021-11-02 18:00:45 +05:30
|
|
|
screens: {
|
|
|
|
sm: '640px',
|
|
|
|
md: '768px',
|
|
|
|
lg: '1024px',
|
2021-12-07 13:18:57 +05:30
|
|
|
xl: '1280px',
|
2021-11-02 18:00:45 +05:30
|
|
|
},
|
2019-11-19 23:04:45 +05:30
|
|
|
fontSize: {
|
|
|
|
xs: '11px',
|
|
|
|
sm: '12px',
|
|
|
|
base: '13px',
|
|
|
|
lg: '14px',
|
|
|
|
xl: '18px',
|
|
|
|
'2xl': '20px',
|
|
|
|
'3xl': '24px',
|
2021-12-07 13:18:57 +05:30
|
|
|
'4xl': '28px',
|
2019-10-04 23:25:28 +05:30
|
|
|
},
|
2019-10-06 03:11:16 +05:30
|
|
|
extend: {
|
2019-10-06 18:03:21 +05:30
|
|
|
maxHeight: {
|
2021-12-07 13:18:57 +05:30
|
|
|
64: '16rem',
|
2019-10-06 18:03:21 +05:30
|
|
|
},
|
2019-10-11 15:25:50 +05:30
|
|
|
minWidth: {
|
2021-12-07 13:18:57 +05:30
|
|
|
40: '10rem',
|
|
|
|
56: '14rem',
|
2019-10-11 15:25:50 +05:30
|
|
|
},
|
2019-10-30 01:03:26 +05:30
|
|
|
maxWidth: {
|
2021-12-07 13:18:57 +05:30
|
|
|
32: '8rem',
|
|
|
|
56: '14rem',
|
2019-10-30 01:03:26 +05:30
|
|
|
},
|
2019-10-06 03:11:16 +05:30
|
|
|
spacing: {
|
2021-12-07 13:18:57 +05:30
|
|
|
7: '1.75rem',
|
|
|
|
14: '3.5rem',
|
|
|
|
18: '4.5rem',
|
|
|
|
28: '7rem',
|
|
|
|
72: '18rem',
|
|
|
|
80: '20rem',
|
2019-10-06 03:11:16 +05:30
|
|
|
},
|
|
|
|
boxShadow: {
|
2019-11-19 23:04:45 +05:30
|
|
|
'outline-px': '0 0 0 1px rgba(66, 153, 225, 0.5)',
|
2021-11-02 18:00:45 +05:30
|
|
|
DEFAULT: '0 2px 4px 0 rgba(0, 0, 0, 0.05)',
|
2019-11-19 23:04:45 +05:30
|
|
|
md: '0 0 2px 0 rgba(0, 0, 0, 0.10), 0 2px 4px 0 rgba(0, 0, 0, 0.08)',
|
2021-12-07 13:18:57 +05:30
|
|
|
button: '0 0.5px 0 0 rgba(0, 0, 0, 0.08)',
|
2019-10-13 17:33:01 +05:30
|
|
|
},
|
|
|
|
borderRadius: {
|
2019-12-11 15:08:20 +05:30
|
|
|
sm: '0.25rem', // 4px
|
2021-11-02 18:00:45 +05:30
|
|
|
DEFAULT: '0.313rem', // 5px
|
2019-12-11 15:08:20 +05:30
|
|
|
md: '0.375rem', // 6px
|
|
|
|
lg: '0.5rem', // 8px
|
2021-12-07 13:18:57 +05:30
|
|
|
xl: '0.75rem', // 12px
|
2019-10-13 17:33:01 +05:30
|
|
|
},
|
2022-01-10 13:47:23 +05:30
|
|
|
gridColumn: {
|
|
|
|
'span-full': '1 / -1',
|
|
|
|
},
|
2023-06-20 17:50:20 +05:30
|
|
|
colors,
|
2021-12-07 13:18:57 +05:30
|
|
|
},
|
2019-10-03 19:16:12 +05:30
|
|
|
},
|
|
|
|
variants: {
|
2019-12-11 15:08:20 +05:30
|
|
|
margin: ['responsive', 'first', 'last', 'hover', 'focus'],
|
2019-12-23 16:07:30 +05:30
|
|
|
backgroundColor: ['responsive', 'first', 'hover', 'focus', 'focus-within'],
|
2021-12-07 13:18:57 +05:30
|
|
|
display: ['group-hover'],
|
2019-10-03 19:16:12 +05:30
|
|
|
},
|
2023-01-07 13:25:08 +03:00
|
|
|
plugins: [require('tailwindcss-rtl')],
|
2019-10-06 03:11:16 +05:30
|
|
|
};
|
2022-03-01 14:17:20 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* 208, 100, 50
|
|
|
|
* 209, 62, 50
|
|
|
|
*/
|