AtlatestRepositorysigil-web-styles
sigil-web-styles / treepackage.sgl
1
;;; sigil-web-styles - Design system and theme library for Sigil web apps2
;;;3
;;; Provides palettes, typography, component styles, and layouts that give4
;;; Sigil web apps a consistent look with customizable color themes.6
(package7
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: (list16
(from-git url: "codeberg:sigil/sigil-css" version: "^0.9.1"))18
dev-dependencies: (list19
(from-git url: "codeberg:sigil/sigil" package: "sigil-test" version: "^0.17"))21
tasks: (list22
(task23
name: 'build24
description: "Compile sigil-web-styles modules"25
steps: (list26
(compile-sigil-modules sources: "src/**/*.sgl"27
output-dir: (config-output-subdir "lib"))))))