2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-05-11 14:53:22 +00:00

fix(website): set dark bg color to neutral-950

This commit is contained in:
sammyette 2025-05-03 22:24:24 -04:00
parent c47089aa36
commit e44887feae
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ import lustre/element/html
pub fn page() -> element.Element(a) {
html.div([attribute.class("flex flex-col gap-4 mb-4")], [
html.div([attribute.class("border-b border-b-zinc-300 gap-3 -mx-4 pt-2 h-screen bg-radial-[at_100%_100%] from-pink-500 to-stone-50 dark:to-black to-35% flex flex-col items-center justify-center")], [
html.div([attribute.class("border-b border-b-zinc-300 gap-3 -mx-4 pt-2 h-screen bg-radial-[at_100%_100%] from-pink-500 to-stone-50 dark:to-neutral-950 to-35% flex flex-col items-center justify-center")], [
html.div([attribute.class("gap-1 flex flex-col items-center")], [
html.span([attribute.class("flex flex-row items-center justify-center")], [
html.img([

View File

@ -26,7 +26,7 @@ pub fn main() {
fn create_page(content: element.Element(a)) -> element.Element(a) {
let description = "Something Unique. Hilbish is the new interactive shell for Lua fans. Extensible, scriptable, configurable: All in Lua."
html.html([attribute.class("bg-stone-50 dark:bg-stone-950 text-black dark:text-white")], [
html.html([attribute.class("bg-stone-50 dark:bg-neutral-950 text-black dark:text-white")], [
html.head([], [
html.meta([
attribute.name("viewport"),