-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (40 loc) · 1.33 KB
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* eslint-disable @typescript-eslint/no-var-requires */
const withMT = require('@material-tailwind/react/utils/withMT');
const TailwindElement = require('tw-elements/dist/plugin.cjs');
const { fontFamily } = require('tailwindcss/defaultTheme');
/** @type {import('tailwindcss').Config} */
module.exports = withMT({
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/pages/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
'./src/partials/**/*.{js,ts,jsx,tsx}',
'./node_modules/tw-elements/dist/js/**/*.js',
],
theme: {
extend: {
colors: {
'palatinate-blue': '#2B3BE5',
'coarse-wool': '#1D1A27',
'ghost-white': '#FBF8FF',
'pale-marigold': '#FFBE47',
'rare-wind': '#5BFBD8',
'brave-purple': '#968AB6',
},
boxShadow: {
'purple-sm': '0px 2px 10px rgba(43, 59, 229, 0.2)',
'purple-md': '10px 5px 25px rgba(43, 59, 229, 0.3)',
'black-sm': '0px 2px 10px rgba(0, 0, 0, 0.02)',
'black-md': '0px 5px 25px rgba(0, 0, 0, 0.05)',
'black-grey-md': '0 9px 25px 0 rgba(132, 128, 177, 0.28)',
},
dropShadow: {
'purple-sm': '0px 10px 25px rgba(43, 59, 229, 0.08)',
},
fontFamily: {
sans: ['var(--font-outfit)', ...fontFamily.sans],
},
},
},
plugins: [TailwindElement],
});