| 1234567891011121314151617181920 |
- import { Theme } from "./objects/Theme";
- export class StyleLoadable {
- load() {
- new Theme(
- // SurfingKeys Theme
- // https://github.com/brookhong/Surfingkeys/tree/master/src/pages
- ``,
- // Custom Stylesheet
- ``,
- // Hint Style
- // https://github.com/brookhong/Surfingkeys/blob/master/docs/API.md#hintsstyle
- ``,
- // Visual Style
- // https://github.com/brookhong/Surfingkeys/blob/master/docs/API.md#visualstyle
- ``,
- ``,
- ).set();
- }
- }
|