atproto blogging
1//! Built-in themes for notebooks (server-only).
2//!
3//! Gated behind the `themes` feature to avoid bloating WASM bundles.
4
5mod code_themes;
6mod colour_schemes;
7
8pub use code_themes::{BuiltinCodeTheme, BUILTIN_CODE_THEMES};
9pub use colour_schemes::{BuiltinColourScheme, BUILTIN_COLOUR_SCHEMES};