-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
37 lines (37 loc) · 939 Bytes
/
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
/** @type {import('tailwindcss').Config} */
import colors from 'tailwindcss/colors';
export const content = ['./src/**/*.{html,tsx}'];
export const theme = {
colors: {
transparent: 'transparent',
current: 'currentColor',
white: colors.white,
slate: colors.slate,
sky: colors.sky,
text: colors.sky[950],
red: colors.red,
button: {
DEFAULT: colors.sky[500],
hover: colors.red[600],
},
ship: {
active: colors.sky[500],
disabled: colors.slate[300],
},
missed: {
active: colors.sky[300],
disabled: colors.slate[300],
},
hit: {
active: colors.red[600],
disabled: colors.slate[300],
},
sunk: {
active: colors.sky[950],
disabled: colors.slate[300],
},
},
extend: {},
};
// eslint-disable-next-line @typescript-eslint/no-var-requires
export const plugins = [require('tailwind-scrollbar')({ nocompatible: true })];