-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
29 lines (27 loc) · 803 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
29 lines (27 loc) · 803 Bytes
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
/** @type {import('tailwindcss').Config} */
export const content= [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./Components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
];
export const theme = {
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
colors: {
primary: '#006da4',
secondary: '#004d74',
sidebar_color: '#012245',
header_hover: '#006494',
},
gridTemplateColumns: {
'customgrid': '0.3fr 1.5fr repeat(2, 0.8fr) repeat(2, 0.2fr)',
'smallDev': '0.4fr 2fr 0.8fr repeat(2, 0.3fr)'
}
},
};
export const plugins = [
require('tailwind-scrollbar')({ nocompatible: true }),
];