-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
50 lines (49 loc) · 1.04 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
42
43
44
45
46
47
48
49
50
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./nuxt.config.{js,ts}",
],
buildModules: [
'@nuxtjs/google-fonts'
],
googlefonts: {
families: {
Rubik: [700, 400, 200],
Karla: [700, 400, 200]
}
},
theme: {
screens: {
sm: '480px',
md: '768px',
lg: '976px',
xl: '1440px'
},
extend: {
colors: {
primaryColor: 'rgba(174, 217, 247, 0.35)',
secondaryBGColor: '#00D1FF',
heroBannerColor: 'rgba(174, 217, 247, 0.35)',
textColor: '#1793E7',
buttonPrimaryColor: '#1793E7',
secondaryTextColor: '#E0E0E0',
footerBG: '#A5A5A5',
dashboardAside: '#434343',
navlinkTrans: '#ffffff30'
},
},
fontFamily: {
'sans': ['Rubik'],
'serif': ['Karla']
}
},
plugins: [
require('@tailwindcss/forms')({
strategy: 'class',
}),
],
}