web_lib

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

index.ts (248B)


      1 import { ThemePreset } from "../types.js";
      2 import { os_dark_theme } from "./os-theme-dark.js";
      3 import { os_light_theme } from "./os-theme-light.js";
      4 
      5 export const theme_os_preset: ThemePreset = {
      6     light: os_light_theme,
      7     dark: os_dark_theme
      8 }