-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
38 lines (38 loc) · 963 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
38
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./src/**/*.{js,html}",
],
theme: {
fontFamily: {
sans: ['Farro', 'sans-serif'],
},
colors: {
'background': '#112941',
'primary': '#3270af',
'primary-light': '#5b9fe2',
'primary-dark': '#275787',
'primary-text': '#ffffff',
'secondary-text': '#c2c2c2',
'divider': '#8f8f8f',
'accent': '#ffbf00',
'black': '#000000',
},
screens: {
'x-sm': '640px',
'x-md': '768px',
'x-lg': '1024px',
'x-xl': '1280px',
'x-2xl': '1536px',
'y-sm': { 'raw': '(min-height: 640px)' },
'y-md': { 'raw': '(min-height: 768px)' },
'y-lg': { 'raw': '(min-height: 1024px)' },
'y-xl': { 'raw': '(min-height: 1280px)' },
'y-2xl': { 'raw': '(min-height: 1536px)' },
},
},
plugins: [
require('tailwindcss-animated'),
require('tailwind-scrollbar-hide'),
],
}