Skip to content

Commit b22c13c

Browse files
committed
Version 1.2.0.
1 parent f1c641f commit b22c13c

3 files changed

Lines changed: 8 additions & 7 deletions

File tree

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# µCSS
22

3-
Lightweight CSS framework built on [PicoCSS v2](https://picocss.com/), part of the **Temma-UI** project.
3+
Full-featured themeable CSS framework built on [PicoCSS v2](https://picocss.com/).
44

55
## Features
66

@@ -11,7 +11,6 @@ Lightweight CSS framework built on [PicoCSS v2](https://picocss.com/), part of t
1111
- **Dark mode** — Automatic (prefers-color-scheme) or manual (`data-theme`)
1212
- **Pure CSS** — No JavaScript dependency
1313
- **PHP tooling** — Build and theming via PHP scripts, no Node.js/SASS required
14-
- **PicoCSS compatible** — Own `--mu-` prefix with automatic `--pico-` bridge variables
1514

1615
## Installation
1716

build/mu-build.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ function formatSize(int $b): string {
162162
// Assemble
163163
$parts = [];
164164
if (!$noBanner) {
165-
$parts[] = "/*!\n * µCSS v1.0.0 — theme: {$primary}\n * Built on PicoCSS v2 — https://picocss.com\n * Generated: " . date('Y-m-d H:i:s') . "\n */\n";
165+
$parts[] = "/*!\n * µCSS v1.2.0 — theme: {$primary}\n * Built on PicoCSS v2 — https://picocss.com\n * Generated: " . date('Y-m-d H:i:s') . "\n */\n";
166166
}
167167

168168
// PicoCSS base + colors
@@ -178,7 +178,7 @@ function formatSize(int $b): string {
178178
// Actually, let's assemble properly: pico.css, pico.colors.css, mu.colors, grid, components
179179
$parts = [];
180180
if (!$noBanner) {
181-
$parts[] = "/*!\n * µCSS v1.0.0 — theme: {$primary}\n * Built on PicoCSS v2 — https://picocss.com\n * Generated: " . date('Y-m-d H:i:s') . "\n */\n";
181+
$parts[] = "/*!\n * µCSS v1.2.0 — theme: {$primary}\n * Built on PicoCSS v2 — https://picocss.com\n * Generated: " . date('Y-m-d H:i:s') . "\n */\n";
182182
}
183183

184184
$colorsInserted = false;

package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@digicreon/mucss",
3-
"version": "1.0.0",
4-
"description": "µCSS — A CSS framework built on PicoCSS v2",
3+
"version": "1.2.0",
4+
"description": "µCSS — Full-featured themeable CSS framework.",
55
"main": "dist/mu.css",
66
"style": "dist/mu.css",
77
"files": [
@@ -12,12 +12,14 @@
1212
"keywords": [
1313
"css",
1414
"framework",
15+
"web",
1516
"picocss",
1617
"responsive",
1718
"grid",
1819
"components",
1920
"dark-mode",
20-
"accessible"
21+
"front-end",
22+
"mobile-first"
2123
],
2224
"homepage": "https://www.mucss.org",
2325
"repository": {

0 commit comments

Comments
 (0)