34 lines
610 B
JavaScript
34 lines
610 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["*.html", "./src/**/*.rs"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
text: "#eaf0f0",
|
|
background: "#060909",
|
|
primary: "#669799",
|
|
secondary: "#403753",
|
|
accent: "#74527a",
|
|
},
|
|
},
|
|
fontSize: {
|
|
sm: '0.750rem',
|
|
base: '1rem',
|
|
xl: '1.333rem',
|
|
'2xl': '1.777rem',
|
|
'3xl': '2.369rem',
|
|
'4xl': '3.158rem',
|
|
'5xl': '4.210rem',
|
|
},
|
|
fontFamily: {
|
|
heading: 'Noto Sans Tai Tham',
|
|
body: 'Noto Sans Tai Tham',
|
|
},
|
|
fontWeight: {
|
|
normal: '400',
|
|
bold: '700',
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|