spacedrive/tailwind.config.js

63 lines
1.5 KiB
JavaScript
Raw Normal View History

2021-09-22 06:27:02 +00:00
const colors = require('tailwindcss/colors');
2021-09-27 05:07:27 +00:00
const plugin = require('tailwindcss/plugin');
2021-10-05 04:16:12 +00:00
const defaultTheme = require('tailwindcss/defaultTheme');
2021-09-22 06:27:02 +00:00
module.exports = {
2021-10-05 04:16:12 +00:00
purge: ['./src/index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: 'media',
2021-09-22 06:27:02 +00:00
mode: 'jit',
theme: {
2021-10-05 04:16:12 +00:00
extend: {
boxShadow: {
box: '0px 4px 9px rgba(0, 0, 0, 0.05)',
backdrop: '0px 4px 66px rgba(0, 0, 0, 0.08)'
},
bg: {
funky: 'linear-gradient(90.63deg,#46bcff 12.1%,#85edfb 50.85%,#e04cf8 91.09%)'
},
colors: {
primary: {
DEFAULT: '#2599FF',
50: '#FFFFFF',
100: '#F1F8FF',
200: '#BEE1FF',
300: '#8BC9FF',
400: '#58B1FF',
500: '#2599FF',
600: '#0081F1',
700: '#0065BE',
800: '#004A8B',
900: '#002F58'
},
gray: {
DEFAULT: '#505468',
2021-10-27 10:59:39 +00:00
50: '#F1F1F4',
2021-10-05 04:16:12 +00:00
100: '#E8E9ED',
150: '#E0E1E6',
200: '#D8DAE3',
250: '#D2D4DC',
2021-10-06 00:28:47 +00:00
300: '#C0C2CE',
350: '#A6AABF',
400: '#9196A8',
450: '#71758A',
2021-10-05 04:16:12 +00:00
500: '#505468',
550: '#434656',
2021-10-27 10:59:39 +00:00
600: '#323846',
650: '#222630',
700: '#1C202A',
750: '#282A34',
2021-10-27 10:59:39 +00:00
800: '#1C1E26',
850: '#30303E',
2021-10-27 10:59:39 +00:00
900: '#15171F',
950: '#12141A'
2021-10-05 04:16:12 +00:00
}
}
// fontFamily: { sans: ['Inter', ...defaultTheme.fontFamily.sans] }
2021-09-22 06:27:02 +00:00
}
},
variants: {
2021-09-22 09:30:17 +00:00
extend: {}
2021-09-22 06:27:02 +00:00
},
plugins: []
2021-09-22 06:27:02 +00:00
};