website: move editorial tokens to globals.css, remove --ll- prefix
All CSS variables previously scoped under .liveline-page with --ll- prefix are now at :root in globals.css with no prefix. Four names conflicting with shadcn were renamed: --brand-primary, --brand-secondary, --link-accent, --page-border. Class renames: .liveline-page → .editorial-page, .liveline-article → .editorial-article, .ll-bleed → .bleed, .ll-inline-code → .inline-code, .ll-prose → .editorial-prose. Filenames kept as-is for this commit to isolate the rename.
This commit is contained in:
+2
-2
@@ -38,8 +38,8 @@ Dark mode uses `prefers-color-scheme` media query, configured in `globals.css`:
|
||||
```css
|
||||
/* globals.css — this is the Tailwind entry point */
|
||||
@import "tailwindcss";
|
||||
@import "./liveline.css"; /* these get Tailwind processing */
|
||||
@import "./liveline-prism.css";
|
||||
@import "./liveline.css"; /* editorial page styles (class names, layout) */
|
||||
@import "./liveline-prism.css"; /* prism syntax highlighting */
|
||||
@custom-variant dark (@media (prefers-color-scheme: dark));
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user