-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
45 lines (44 loc) · 1.1 KB
/
tailwind.config.ts
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
42
43
44
45
import type { Config } from 'tailwindcss';
import { PluginAPI } from 'tailwindcss/types/config';
export default {
content: ['./src/**/*.{html,ts}'],
theme: {
screens: {
tablet: '480px',
laptop: '1024px',
monitor: '1920px',
},
extend: {
colors: {
'light-blue': '#54b4e2',
'dark-blue': '#0093d9',
'light-green': '#7eff7e',
'dark-green': '#00cc00',
'light-pink': '#ff7dbb',
'dark-pink': '#ff5caa',
'light-red': '#ff8c8c',
'dark-red': '#cc0000',
'light-gray': '#d7d6d9',
'dark-gray': '#1e1e1e',
},
fontFamily: {
sans: ['Montserrat', 'Roboto', 'Helvetica Neue', 'sans-serif'],
},
},
},
plugins: [
function ({ addUtilities }: PluginAPI) {
addUtilities({
'.filled-symbol': {
'font-variation-settings': '"FILL" 1',
},
'.fine-symbol': {
'font-variation-settings': '"wght" 250',
},
'.no-tap-highlight': {
'-webkit-tap-highlight-color': 'transparent',
},
});
},
],
} satisfies Config;