Messing with Journal colors

This commit is contained in:
Scott Idem
2025-04-11 12:19:17 -04:00
parent 9adcc6d54c
commit deef453580
2 changed files with 5 additions and 4 deletions

View File

@@ -33,8 +33,9 @@ let { log_lvl = 0,
<section class="
bg-white rounded-lg p-2 m-2 w-full
rounded-lg p-2 m-2 w-full
flex flex-col flex-wrap items-center justify-center
bg-{$lq__journal_obj?.cfg_json.color_scheme}-100
"
bind:clientHeight={$ae_loc.iframe_height_modal_body}>
@@ -65,7 +66,7 @@ let { log_lvl = 0,
p-2
w-full max-w-screen-md
font-mono
bg-{$lq__journal_obj?.cfg_json.color_scheme}-100 text-gray-900
text-gray-900
dark:bg-blue-900 dark:text-gray-100
shadow-md rounded-lg
text-sm font-normal text-wrap word-break

View File

@@ -27,7 +27,7 @@ let { lq__journal_obj_li }: Props = $props();
{#each $lq__journal_obj_li as journals_journal_obj, index}
<div
class="container journal journal_obj border border-1 rounded p-2 mb-2 space-y-2 w-full max-w-screen-lg flex flex-col items-center justify-center"
class="container journal journal_obj border border-1 rounded p-2 mb-2 space-y-2 w-full max-w-screen-lg flex flex-col items-center justify-center bg-{journals_journal_obj?.cfg_json.color_scheme}-100"
class:hidden={(journals_journal_obj?.hide || !journals_journal_obj?.enable) && !$ae_loc.trusted_access}
class:dim={journals_journal_obj.hide}
class:bg-warning-100={!journals_journal_obj?.enable}
@@ -57,7 +57,7 @@ let { lq__journal_obj_li }: Props = $props();
p-2
w-full
font-mono
bg-{journals_journal_obj?.cfg_json.color_scheme}-100 text-gray-900
text-gray-900
dark:bg-blue-900 dark:text-gray-100
shadow-md rounded-lg
text-sm font-normal text-wrap word-break