-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
46 lines (45 loc) · 1012 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
39
40
41
42
43
44
45
46
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx,vue}'],
theme: {
fontFamily: {
title: ['Fira Sans', ...defaultTheme.fontFamily.sans]
},
extend: {
keyframes: {
breathe: {
'0%, 100%': { transform: 'scale(1.01)' },
'50%': { transform: 'scale(1)' }
}
},
animation: {
breathe: 'breathe 3s ease-in-out infinite'
},
colors: {
notebookBg: '#333333',
notebookText: '#9E9E9E',
slate: '#272727',
dark: '#1E1E1E',
gold: '#E2B764'
},
fontSize: {
'title-sm': [
'3rem',
{
fontWeight: '600'
}
],
title: [
'5rem',
{
fontWeight: '600'
}
],
'subtitle-sm': ['1.2rem'],
subtitle: ['1.35rem']
}
}
},
plugins: []
}