🚸 Added docs how to import from kahoot

This commit is contained in:
Mawoka
2022-03-10 17:22:12 +01:00
parent 8a816bdb4c
commit fc2edd8a72
5 changed files with 2485 additions and 3220 deletions
+56 -2
View File
@@ -2,10 +2,64 @@ const config = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {}
extend: {
colors: {
green: {
600: '#009444'
}
},
typography: (theme) => ({
DEFAULT: {
css: {
color: theme('colors.yellow.50'),
textDecoration: 'none',
a: {
color: theme('colors.blue.200')
},
blockquote: {
color: theme('colors.yellow.50')
},
h1: {
color: theme('colors.yellow.50')
},
h2: {
color: theme('colors.yellow.50')
},
h3: {
color: theme('colors.yellow.50')
},
h4: {
color: theme('colors.yellow.50')
},
th: {
color: theme('colors.yellow.50')
},
strong: {
color: theme('colors.yellow.50')
},
'code::before': {
content: '""',
'padding-left': '0.25rem'
},
'code::after': {
content: '""',
'padding-right': '0.25rem'
},
code: {
'padding-top': '0.25rem',
'padding-bottom': '0.25rem',
fontWeight: '400',
color: theme('colors.gray.100'),
'border-radius': '0.25rem',
backgroundColor: theme('colors.slate.800')
}
}
}
})
}
},
plugins: []
plugins: [require('@tailwindcss/typography')]
};
module.exports = config;