Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 1009 Bytes

CHANGELOG.md

File metadata and controls

35 lines (28 loc) · 1009 Bytes

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[Unreleased]

[0.1.0] - 2024-02-14

Added

  • First major commit
  • buttons
  • input fields
  • radio inputs
  • checkboxes
  • grid
  • color palette support
    • see src/styles/colors/ for example palettes
    • see src/styles/colors/color-mixins.scss for the mixin used in colors and for the css variables used for styling:
      • --pg-fg - foreground color
      • --pg-fg-accent - foreground accent color
      • --pg-fg-mid
--pg-fg: var(--pg-#{$name}-fg);
--pg-fg-accent: var(--pg-#{$name}-fg-accent);
--pg-fg-mid: var(--pg-#{$name}-mid);
--pg-bg-mid: var(--pg-#{$name}-mid-accent);
--pg-bg-accent: var(--pg-#{$name}-bg-accent);
--pg-bg: var(--pg-#{$name}-bg);
--pg-cursor: var(--pg-fg-mid);