web_lib

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

os-theme-dark.ts (1402B)


      1 import type { OsThemePreset } from "../types.js";
      2 
      3 export const os_dark_theme: OsThemePreset = {
      4     ly0: {
      5         surfaces: {
      6             _: [0, 0, 7],
      7             _w: [0, 0, 7],
      8             _a: [240, 2, 23],
      9             edge: [274, 4, 11],
     10             blur: [0, 0, 12]
     11         },
     12         glyphs: {
     13             _: [230, 3, 56],
     14             _a: [230, 3, 51],
     15             _pl: [30, 1, 99],
     16             hl: [210, 100, 52],
     17             hl_a: [210, 91, 21],
     18             shade: [240, 3, 57],
     19             label: [240, 3, 55]
     20         }
     21     },
     22     ly1: {
     23         surfaces: {
     24             _: [240, 4, 11],
     25             _a: [240, 2, 23],
     26             edge: [240, 3, 19],
     27             err: [0, 0, 0],
     28             focus: [240, 4, 20]
     29         },
     30         glyphs: {
     31             _: [30, 100, 100],
     32             _a: [30, 1, 90],
     33             _d: [240, 1, 82],
     34             _pl: [30, 1, 99],
     35             hl: [210, 100, 52],
     36             hl_a: [210, 100, 62],
     37             shade: [230, 4, 61],
     38             label: [30, 1, 99]
     39         }
     40     },
     41     ly2: {
     42         surfaces: {
     43             _: [240, 2, 18],
     44             _a: [240, 3, 15],
     45             edge: [240, 2, 23]
     46         },
     47         glyphs: {
     48             _: [240, 3, 73],
     49             _a: [230, 4, 51],
     50             _d: [240, 3, 63],
     51             _pl: [240, 2, 40],
     52             hl: [210, 100, 52],
     53             hl_a: [210, 100, 42],
     54             shade: [230, 4, 61]
     55         }
     56     }
     57 };