feat(13): style guide into config

This commit is contained in:
efim 2023-06-29 12:13:18 +00:00
parent d181064165
commit 2dff41f428
2 changed files with 21 additions and 2 deletions

View File

@ -1,3 +1,7 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
html {
font-size: 13px;
}

View File

@ -1,8 +1,23 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.html"],
content: ["./src/**/*.{html, scala}"],
theme: {
extend: {},
extend: {
colors: {
'moderate-violet': 'hsl(263, 55%, 52%)',
'very-dark-grayish-blue': 'hsl(217, 19%, 35%)',
'very-dark-blackish-blue': 'hsl(219, 29%, 14%)',
'light-gray': 'hsl(0, 0%, 81%)',
'light-grayish-blue': 'hsl(210, 46%, 95%)',
},
fontFamily: {
'sans': ['Barlow Semi Condensed', 'sans-serif'], // This will set Roboto as the default sans font
},
fontWeight: {
'normal': 400,
'bold': 500,
}
},
},
plugins: [],
}