Add Tailwind workshop slides
This commit is contained in:
parent
7e82c2fd7e
commit
be9513edc6
78 changed files with 1154 additions and 0 deletions
27
workshop-tailwind-css/code/config-1.txt
Normal file
27
workshop-tailwind-css/code/config-1.txt
Normal file
|
@ -0,0 +1,27 @@
|
|||
module.exports = {
|
||||
// ...
|
||||
|
||||
theme: {
|
||||
fontFamily: {
|
||||
display: ['Bebas Neue', 'Arial Narrow', 'Arial', 'sans-serif'],
|
||||
sans: ['Helvetica', 'Arial', 'sans-serif'],
|
||||
},
|
||||
colors: {
|
||||
blue: {
|
||||
DEFAULT: '#56a9db',
|
||||
dark: '#1772ae',
|
||||
},
|
||||
gray: {
|
||||
dark: '#333333',
|
||||
},
|
||||
orange: '#fcb040',
|
||||
white: '#ffffff',
|
||||
},
|
||||
extend: {
|
||||
fontSize: {
|
||||
'2xl': '1.5625rem', // 25px
|
||||
'3xl': '1.6875rem', // 27px
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue