AtlatestRepositorysigil-web-styles

sigil-web-styles / treepackage.sgl

1;;; sigil-web-styles - Design system and theme library for Sigil web apps
2;;;
3;;; Provides palettes, typography, component styles, and layouts that give
4;;; Sigil web apps a consistent look with customizable color themes.
5
6(package
7 name: "sigil-web-styles"
8 version: "0.2.2"
9 sigil: "^0.17"
10 description: "Design system and theme library for Sigil web apps"
11 url: "https://codeberg.org/sigil/sigil-web-styles"
12 license: "BSD-3-Clause"
13 authors: (list "David Wilson <[email protected]>")
15 dependencies: (list
16 (from-git url: "codeberg:sigil/sigil-css" version: "^0.9.1"))
18 dev-dependencies: (list
19 (from-git url: "codeberg:sigil/sigil" package: "sigil-test" version: "^0.17"))
21 tasks: (list
22 (task
23 name: 'build
24 description: "Compile sigil-web-styles modules"
25 steps: (list
26 (compile-sigil-modules sources: "src/**/*.sgl"
27 output-dir: (config-output-subdir "lib"))))))