web_lib

Common web application libraries
git clone https://radroots.dev/git/web_lib.git
Log | Files | Refs | LICENSE

os-theme-light.ts (1407B)


      1 import type { OsThemePreset } from "../types.js";
      2 
      3 export const os_light_theme: OsThemePreset = {
      4     ly0: {
      5         surfaces: {
      6             _: [240, 24, 96],
      7             _w: [248, 17, 98],
      8             _a: [240, 6, 83],
      9             edge: [0, 0, 87],
     10             blur: [179, 7, 96]
     11         },
     12         glyphs: {
     13             _: [240, 2, 55],
     14             _a: [240, 2, 60],
     15             _pl: [240, 2, 78],
     16             hl: [219, 92, 59],
     17             hl_a: [211, 100, 40],
     18             shade: [230, 3, 54],
     19             label: [240, 2, 53]
     20         }
     21     },
     22     ly1: {
     23         surfaces: {
     24             _: [0, 0, 100],
     25             _a: [240, 6, 83],
     26             edge: [274, 4, 90],
     27             err: [0, 0, 0],
     28             focus: [240, 15, 94]
     29         },
     30         glyphs: {
     31             _: [0, 0, 10],
     32             _a: [0, 0, 10],
     33             _d: [0, 0, 20],
     34             _pl: [240, 2, 78],
     35             hl: [211, 100, 50],
     36             hl_a: [211, 100, 40],
     37             shade: [240, 2, 55],
     38             label: [240, 2, 53]
     39         }
     40     },
     41     ly2: {
     42         surfaces: {
     43             _: [240, 5, 90],
     44             _a: [240, 5, 95],
     45             edge: [242, 2, 88]
     46         },
     47         glyphs: {
     48             _: [240, 2, 55],
     49             _a: [240, 2, 45],
     50             _d: [240, 2, 65],
     51             _pl: [240, 2, 78],
     52             hl: [211, 100, 50],
     53             hl_a: [211, 100, 40],
     54             shade: [240, 2, 55]
     55         }
     56     }
     57 };