- 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
23 lines
755 B
CSS
23 lines
755 B
CSS
/* 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-asw.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";
|