restructure: main.css is the manifest, 01-asw.css is the framework

- asw.css → main.css (just imports, no theming :root)
- 01-tokens.css → 01-asw.css (this IS the ASW design system)
- Removed empty :root {} theming block
- Updated deploy.sh PostCSS path
This commit is contained in:
Vigilio Desto 2026-04-10 19:27:39 +02:00
parent 5deaa22e38
commit bffb86338d
Signed by: vigilio
GPG key ID: 159D6AD58C8E55E9
3 changed files with 4 additions and 9 deletions

View file

@ -1,28 +0,0 @@
/* ASW Agentic Semantic Web Framework
* Entry point: Open Props foundation + ASW layer stack
* PostCSS-import resolves all @imports at build time
*
* NOTE: ALL @import statements must come first.
* postcss-import drops any @import that follows a rule.
*/
/* 1. Open Props token foundation */
@import "open-props/open-props.min.css";
/* 2. Framework layers */
@import "./layers/00-reset.css";
@import "./layers/01-tokens.css";
@import "./layers/02-semantic.css";
@import "./layers/03-components.css";
@import "./layers/04-data-attrs.css";
@import "./layers/05-utilities.css";
@import "./layers/06-charts.css";
@import "./layers/07-chroma.css";
@import "./layers/08-layout.css";
@import "./layers/08a-paper.css";
@import "./layers/09-landing.css";
/* 3. ASW theme overrides — edit here to retheme */
:root {
/* Override Open Props primitives or ASW semantics here */
}