latest fix

This commit is contained in:
yuzu 2025-05-08 22:50:28 -05:00
parent 54b2525029
commit 8d294a8141
2 changed files with 1728 additions and 14 deletions

1714
public/main.css Normal file

File diff suppressed because it is too large Load Diff

View File

@ -4,6 +4,19 @@ module.exports = {
content: ["./src/app/views/**/*.{zmpl,html,js}", "./src/main.zig"], content: ["./src/app/views/**/*.{zmpl,html,js}", "./src/main.zig"],
theme: { theme: {
extend: { extend: {
typography: ({ theme }) => ({
DEFAULT: {
css: {
color: theme('colors.gray.800'),
a: { color: theme('colors.blue.600') },
pre: { backgroundColor: theme('colors.gray.100') },
blockquote: {
borderLeftColor: theme('colors.yellow.400'),
fontStyle: 'italic',
}
}
}
}),
colors: { colors: {
win7: { win7: {
bg: '#eaf3ff', // Background base bg: '#eaf3ff', // Background base
@ -21,20 +34,7 @@ module.exports = {
}, },
fontFamily: { fontFamily: {
sans: ['"Segoe UI"', 'Tahoma', 'Geneva', 'Verdana', 'sans-serif'], sans: ['"Segoe UI"', 'Tahoma', 'Geneva', 'Verdana', 'sans-serif'],
},
},
typography: ({ theme }) => ({
DEFAULT: {
css: {
color: theme('colors.gray.800'),
a: { color: theme('colors.blue.600') },
pre: { backgroundColor: theme('colors.gray.100') },
blockquote: {
borderLeftColor: theme('colors.yellow.400'),
fontStyle: 'italic',
}
}
} }
}) }
} }
}; };