feat(lci-theme): wire AE_c_LCI_new into theme pickers for demo

- app.css: import ae-c-lci-new.css alongside existing ae-c-lci.css
- e_app_theme.svelte, e_app_sys_bar.svelte, e_app_url_builder.svelte:
  add 'LCI (New ✦)' option pointing to AE_c_LCI_new selector

Both themes coexist — switch between 'LCI' and 'LCI (New ✦)' in the
theme picker to compare old vs brand-guide-accurate colors and fonts.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Scott Idem
2026-06-16 18:39:49 -04:00
parent ed8e7e57c0
commit 5b1c8ed632
4 changed files with 6 additions and 2 deletions

View File

@@ -36,6 +36,7 @@ html.light {
/* @import '@skeletonlabs/skeleton/themes/ae_c_lci'; */
@import './ae-osit-default.css';
@import './ae-c-lci.css';
@import './ae-c-lci-new.css';
@import './ae-c-idaa-light.css';
@import './ae-firefly.css';
@import './ae-firefly-steelblue.css';

View File

@@ -225,7 +225,8 @@ const theme_options = [
{ value: 'AE_Firefly_Axonius', label: 'Firefly Axonius ✦' },
{ value: 'AE_Firefly_BGH', label: 'Firefly BGH ✦' },
{ value: 'AE_c_IDAA_light', label: 'IDAA light' },
{ value: 'AE_c_LCI', label: 'LCI' }
{ value: 'AE_c_LCI', label: 'LCI' },
{ value: 'AE_c_LCI_new', label: 'LCI (New ✦)' }
];
</script>

View File

@@ -97,6 +97,7 @@ if ($ae_loc.app_cfg.theme_mode == 'light') {
<!-- <option value="AE_Firefly_new-name">Firefly new-name ✦</option> -->
<option value="AE_c_IDAA_light">IDAA - light</option>
<option value="AE_c_LCI">LCI</option>
<option value="AE_c_LCI_new">LCI (New ✦)</option>
</select>
</div>

View File

@@ -101,7 +101,8 @@ const theme_options = [
{ value: 'AE_Firefly_Axonius', label: 'Firefly Axonius ✦' },
{ value: 'AE_Firefly_BGH', label: 'Firefly BGH ✦' },
{ value: 'AE_c_IDAA_light', label: 'IDAA light' },
{ value: 'AE_c_LCI', label: 'LCI' }
{ value: 'AE_c_LCI', label: 'LCI' },
{ value: 'AE_c_LCI_new', label: 'LCI (New ✦)' }
];
</script>