web_lib

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

index.ts (226B)


      1 import { ThemeKey } from "../core/types.js";
      2 import { theme_os_preset } from "./os/index.js";
      3 import { ThemePreset } from "./types.js";
      4 
      5 export const theme_presets: Record<ThemeKey, ThemePreset> = {
      6     os: theme_os_preset,
      7 };