feat(13): style guide into config
This commit is contained in:
parent
d181064165
commit
2dff41f428
|
@ -1,3 +1,7 @@
|
||||||
@tailwind base;
|
@tailwind base;
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
|
|
||||||
|
html {
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
|
|
@ -1,8 +1,23 @@
|
||||||
/** @type {import('tailwindcss').Config} */
|
/** @type {import('tailwindcss').Config} */
|
||||||
module.exports = {
|
module.exports = {
|
||||||
content: ["./src/**/*.html"],
|
content: ["./src/**/*.{html, scala}"],
|
||||||
theme: {
|
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: [],
|
plugins: [],
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue