Skip to content

Inwerpsel/use-theme-editor

Repository files navigation

use-theme-editor: Zero config design system for any CSS

Are you tired of slow design iterations, keeping design content up to date, and oversimplified mockups that miss 99% of your app's complexity? Do you have a waterfall process just so that you can update a few colors? Do you need to have your designers spend literal months setting up and maintaining a separate design system that duplicates information already encoded in your source code?

With this repo you can directly use your content to inspect every part of the design and create new design variations.

It works on literally any HTML page, whether it's from a SPA, CMS, SSR app, static file,... It parses all CSS on the page and makes it browsable.

It also allows to edit the value of any CSS custom property in the inspector (edits to other CSS coming soon).

This repository is intended to be used in various ways*:

  • Integrate the standalone theme editor page with almost no coding required (exact steps to follow)
  • Import 1 function in your own app
  • Something in between the previous options (integrate various components into an existing app)

* While it's intended to preserve this broader range of applicability, this may be narrowed down to some extent in the future.

quickdemo.mp4

Demo

I used some open source page content that seemed ok to use. If you're the owner of some of this content and would like to have it removed / updated, please let me know in a new issue on this repo.

Halfmoon (source)

Info/instructions

What works well?

  • Enormous amount of custom properties => able to edit almost every part of the design.
  • Mostly 1 selector per custom property => easy to understand info in the UI
  • Great demonstration of linking variables in various ways (chains of 3 or 4 variables that actually make sense)
  • Only defines values in the :root scope => easier to understand and less bugs in the editor

What doesn't work well?

  • A very large portion (~1/3 of the ~1500) of variables are just a dark mode version of something that has a light mode version. Since the whole point of custom props is theming, dark mode should have been a theme consisting entirely of custom props. Since the editor only loads the light mode, it should only show the light mode variants. You can remove the annoying lm prefix from the displayed variables.
  • The approach is sometimes a bit contrived, with a lot of variables defined "just in case". This inflates the CSS if you never end up overriding. This is not a problem if the eventual production build filters these. E.g. --lm-button-danger-bg-image-hover: none (similar exists for every state of every variant of button, for both light and dark mode)
  • The documentation site still relies on a few overrides that don't use custom props, which kind of spoils the experience.

πŸ–Œ Buttons πŸ–Œ Forms πŸ–Œ Sidebar

Bootstrap (source)

Info/instructions

What works well?

  • Properties defined in non-root scope. While this approach has some drawbacks too, the result here is pretty good overall.
  • Mostly quite consistent in how similar things are implemented
  • Great for testing alias creation (but has issue in few cases, see below)

What doesn't work well?

  • Quite a lot of custom properties are overridden with regular rules
  • Uses !important quite heavily.
  • Creating aliases has the wrong result sometimes, because the added CSS rules cannot yet properly respect order, and thus specificity. Specifically this happens if you change properties that should be overridden by a more specfic scope. For example: .btn and .btn-primary. This currently happens if you create an alias for a property on .btn.

Loading an export of editor history

You can import and editor session by saving this JSON file: https://github.com/Inwerpsel/use-theme-editor/blob/main/data/histories/bs-crystal-buttons.json

Then, use the "Import history JSON" in the "Import/export" panel to load the session from this file.

It attempts to restore the scroll position, which may not fully work if the screen size is too small.

Smaller pages

πŸ–Œ album πŸ–Œ blog πŸ–Œ carousel πŸ–Œ checkout πŸ–Œ cover πŸ–Œ dashboard πŸ–Œ dropdowns πŸ–Œ features πŸ–Œ footers πŸ–Œ grid πŸ–Œ headers πŸ–Œ heroes πŸ–Œ jumbotron πŸ–Œ list-groups πŸ–Œ masonry πŸ–Œ modals πŸ–Œ navbar-bottom πŸ–Œ navbar-fixed πŸ–Œ navbar-static πŸ–Œ navbars πŸ–Œ navbars-offcanvas πŸ–Œ offcanvas-navbar (sic) πŸ–Œ pricing πŸ–Œ product πŸ–Œ rtl πŸ–Œ sidebars πŸ–Œ sign-in πŸ–Œ starter-template πŸ–Œ sticky-footer πŸ–Œ sticky-footer-navbar

Big page with most things

πŸ–Œ Cheatsheet

Openprops (source)

Info/instructions

What works well?

  • Most complete palette of custom properties
  • Great design
  • Mostly short and readable selectors (I just love small.green-badge and circle#sun)
  • Modern CSS
  • A few pretty advanced use cases (gradients with noisefilters, > 4 border radii blobs, )

What doesn't work well?

  • Special heading style applies also to editor headings. Looks a bit broken but also cute so I didn't intervene yet.
  • Over-usage of :where() (e.g. :where(html)), currently leading to a few bugs in the inspector (e.g. selector locator doesn't properly handle this)
  • Almost no semantic tokens (e.g. button-color), so adding aliases doesn't really make sense here. It also makes drag and dropping values pretty much useless: you'd get something like --orange: var(--purple).
  • Some inline styles (e.g. border radius) not properly handled

πŸ–Œ Home page

Mozilla developers

Info/instructions

What works well?

  • A lot of real world complex markup and variants
  • Clean and semantic markup
  • Relatively successful mix of root and non-root scoped custom properties (doesn't seem inconsistent or confusing)

What doesn't work well?

  • Specificity related bug prevents created aliases from being picked up in the editor in some cases. Possible related to the :root:not(.light):not(.dark) selector

πŸ–Œ How CSS is structured πŸ–Œ Basic math in JavaScript β€” numbers and operators πŸ–Œ @media hover πŸ–Œ Using CSS custom properties

Pico CSS

Info/instructions

What works well?

  • Most semantic markup ever, makes for very short inspector titles (maybe even too short)

What doesn't work well?

  • --background-color is defined in a few scopes. Because of how the inspector currently works, it will only show such variable on the topmost element. Unfortunately this affects buttons.
  • Some custom properties are defined in too hairy selectors. E.g. [role="link"]:is([aria-current], :hover, :active, :focus), a:is([aria-current], :hover, :active, :focus)
  • Some not so sensible defaults

πŸ–Œ accordions πŸ–Œ buttons πŸ–Œ cards πŸ–Œ classless πŸ–Œ containers πŸ–Œ customization πŸ–Œ dropdowns πŸ–Œ forms πŸ–Œ grid πŸ–Œ home πŸ–Œ loading πŸ–Œ modal πŸ–Œ navs πŸ–Œ progress πŸ–Œ rtl πŸ–Œ scroller πŸ–Œ tables πŸ–Œ themes πŸ–Œ tooltips πŸ–Œ typography πŸ–Œ we-love-classes

Other sites

It should work for any site (even complex sites like GitHub, StackOverflow, YouTube), but you'll have to test those locally for now. Only with the current selection of demo pages I was confident enough hosting this content on GitHub Pages wouldn't be a problem (as the source HTML is on GitHub already).

I might in the future add a general purpose way to load other sites, though this has some obvious CORS challenges. Luckily it's quite easy to run locally.

Just save any page as HTML in the browser, into the /docs folder, and inject the script and style tags you see in other example HTML pages at the end of the body.

Features

  • Plug and play: can be added to any page of an app
  • Good performance even on huge pages
  • Detailed information
  • Many editing options
  • Easily locate all other elements affected by a change
  • Screen switcher on variables with a media query
  • Link variables to other variables to create a design system
  • Switch themes while deep inspecting
  • Reposition or hide any UI element with drag and drop

Roadmap

Among the issues on this repo, the following are the current areas of focus.

  • History UI: The UI around history was expanded a lot recently, and there's still some nuances to figure out, as well as some possible new capabilities.
  • Refactor how inspector frame is loaded: Currently, it still requires a script to be added to the page after saving it. This script also runs some duplicate logic with the main document. It was also written without the realization that many (if not all) interactions with the iframe can be done synchronously (i.e. without postMessage). Addressing this is expected to significantly improve memory usage.
  • Clean up CSS parsing and evaluation of inspection: Currently, the algorithm used for most of the inspection still dates to the initial implementation of this repo, and the assumptions have changed enough so that it currently doesn't perform as well as it could (this is an understatement). The new parsing algorithm is mostly ready, and can be put in place after (or while) the inspector frame code is improved. This will allow for any CSS to be changed, not only the contents of custom properties.

Status and stability

While in general most functionality is quite stable, various parts are being worked on at the moment. If you'd like to make use of this repo in any form, but can't find everything you need to set it up (be it documentation or functionality), feel free to open a new issue describing your needs and they'll be prioritized.

FAQ

Where is the documentation?

A documentation site is planned, but postponed for now as there's too many things that are being developed which would result in constant updating of texts and screenshots, delaying the work.

Some information is in readme files in this repository, but it could be better organized.

For the same efficiency reasons, some UI labels and descriptions are left out.

The UI is intended to be maximally intuitive, though. Almost all application state is also included in the history timeline. This means that you can just experiment to get a hang of it, and easily undo your experiments.

Which application state is included in history?

In general everything is included, except when it wouldn't be useful or practical (or even possible in some cases).

Some things that might seem weird to include in a history timeline have to be included, because otherwise it wouldn't be possible to restore the UI state.

What is not included in the timeline?
  • Options related to history behavior and visualization
  • The palette (it offers a stable place to put things)
  • Options that change how names are displayed
  • Options that change which information is displayed (source links, properties)
  • Compact mode of dragable elements if present
  • Visibility of element locators on non-root custom property scopes
  • The currently focused element index of element locators
  • Sporadic local state that is not needed when replaying (like when adding an alias it doesn't need the dialog)

Everything else is tracked, but can be opted out individually by keeping it locked.

Why can I drag these seemingly too small pieces of UI around?

While this seems overkill, it's more useful than you'd think. There's a lot of different ways in which a page can use CSS. Sometimes you never need to touch a given option, sometimes you need to toggle it very often. Personal preference can also mean one person constantly uses an option, while the other one rarely or never.

The same goes for combinations of UI elements. If you often inspect and need to switch the granularity or search filter, it's a more pleasant UX if you can position those options right next to the inspector. If you don't want this (or it's not relevant on the site), it's nice to be able to recover the screen real estate.

This is also the reason options are not grouped into something like an options menu, which would make it difficult to offer this level of customization.

Lastly, it's implemented efficiently enough to not have to care about how many things are draggable.

Why does the editor seem largely unstyled?

It's a bit contradictory for a theme editing application to use this many default browser styles. Plenty of things could definitely look and behave better with a bit more CSS.

There's 2 main reasons for this.

The first is that, for now, it actually loads the styles of the inspected page. While it results in a bit of a mess from time to time, it helps harden the CSS that is used, and can also help understand different kinds of CSS better while developing this app. It often actually looks good and consistent with the inspected page.

The second reason is the existential crisis arising from working with all kinds of different CSS methodologies. You'd think after some time this would show that one way of doing things is clearly better, but that's not the case. As a result, it's now mostly developed with easy and robust styles to cut down on complexity until choices can be confidently made.

Why is there no good overview of the changes I've made?

A lot of the data extraction and inspection logic is being rewritten at the moment. The CurrentTheme component (by default in the drawer) used to fulfill the purpose of showing a list of all changes you made, but it's not being updated until this refactor is done.

While this is obviously a crucial component in the eventual use case, for development of everything else it's not necessary so it's much more efficient to postpone it.

For now you can still get an overview by exporting the current theme as JSON or CSS.

Included packages*

* Not fully set up as separate packages yet, but code should work as such. These components should work with any React application.

I have no good name for it yet (in code called MovablePanels). It makes drag and drop rearrangement in React very easy.

Using useSyncExternalStore, these hooks make it possible to put multiple pieces of state into a single history timeline, while offering a similar function signature as useState and useReducer. Any code that uses either should just work with history by replacing the function, and adding a string key.

  • Capture any combination of separate states (simple or with reducers) into a single timeline.
  • Only elements with changes are ever rerendered when jumping between any 2 states in history.
  • Some (rough) components for timeline navigation and visualization.
  • Register a custom component per action to visualize in the timeline.
  • Debounces everything by default (you'd never want history without it).
  • Store all history across page loads using IndexedDb.

Known current issues and limitations

A few components are not (fully) working at the moment, mostly because they depend on future changes, but also some small bugs.

You should take the following into account when trying the demo.

  • Current theme view not working properly (needs adaptation to selector scoped properties). It can still be used for a general overview but is missing variable values and can't be filtered properly.
  • Add alias for raw values not working (which you'd probably expect it to do, but currently it only substitues the value inside of var() statements).
  • History needs to be cleared manually before it gets too big (how big depends on exact content, but should be fine below 200 entries, for reasonably optimized sites).
  • All inspections are re-executed in one task, immediately when history is applied when loading the page, causing a potentially long delay and increasing memory usage.
  • When you create a history stash (by using undo and then continuing from an older state), if there are locks on the stashed entries, the locked state will be included in both the new timeline and still in the stash. This is not ideal as it's confusing and might lead to bugs.
Here's a long list / braindump of some in progress work and ideas. I'll gradually convert some to issues.

IN PROGRESS

  • Improve relative layout of deeper parts of the inspector UI

    • Find design principles that work with the complex and interconnected nature of the displayed information.
    • Current principles: at the top level it shows the entire dependency chain up to the variable setting the raw value. Each of these elements can be "opened" to access all details about that variable, including other references than than the current one. It should provide quick and intuitive access to each piece of information, while keeping the overall structure and flow understandable and not overwhelming. Ideally it's possible to open any 2 given pieces of information at the same time.
    • Current per variable elements:
      • Basic information (formatted name, value) (always visible)
      • Screen switcher (only when needed) (always visible)
      • Extra scroll in view button
      • Usages in var() statements in source CSS on regular properties
        • Grouped by selector + property
        • Element locator for each individual selector of the rule
        • Property
      • Usages in var() statements of other custom properties (source + theme)
        • Referencing variable name
        • Grouped* by combined selectors of properties.
        • Element locator
      • Replace with other variable
      • Typed control (different per type, will do after figuring out how to handle property types)
      • Unset button
      • Media query
    • Element locator:
      • Selector being located
      • Scroll in view button
      • Previous and next button
      • Counter + indicator of current
      • Tagname + id + classes of current
      • Inspect button (unless element is the current inspected)
      • Not found message
    • Togglable elements:
      • CSS properties (+ indicator if current var is not the full value)
      • Source code link (if available, filename (formatted) + line)
  • Support "locally" scoped custom properties

    • Problem: Selector specificity when adding a rule after the existing rules
      • For now this is solved using !important, which surprisingly seems to work 100% of the time.
      • However, an even better solution is to take full control over the stylesheets on the page so that no overriding rules are needed.
        • No additional CSS rules
        • Recalculations affect (often much) less elements, because cascading no longer needed
        • No specificity challenges at all
        • Also supports regular CSS edits
  • Determine / infer property types

    • examples + libs
    • "De facto" type system?
      • A variable gets its type from the intersection of all CSS properties it's used on.
        • Seems hard to parse from allowed syntaxes? Perhaps not a problem in most cases?
      • UI filters the actions it allows, so that the end result is always legal CSS.
      • e.g. you should be able to change a variable to a gradient if it's only used on the background property. You should not be able to assign a gradient variable to a non-background property.
      • Split up a single variable into multiple groups with the same value types? E.g. you start adding a color to a bunch of backgrounds and text colors, then find you want to use a gradient on all these backgrounds, but preserve the regular text colors.
    • Additional constraints
      • Should be possible to force constraints beyond usage inference.
      • Or perhaps including a property access in code is a very simple way to achieve this?
    • Fix handling of multiple variables on a single rule
    • Support typing of variables surrounded by just 1 function
      • It's apparently a common thing for frameworks to hard code which color function to use, and have the variables only contain the arguments. (e.g. BS and derivatives, mostly in DaisyUI)
      • Even though this is a bad idea for multiple reasons, I don't expect common frameworks to change it soon.
      • Can be somewhat generalized. Perhaps check type of function arguments in CSS syntax?

TODO

  • Variable actions:
    • Convert a raw value to a variable
      • First search for existing vars with same value
      • Always show these options in case of raw values (unless they're not used in selectors)
    • Search all equal raw values and replace with variable
    • Split variable into multiple
  • Visualize some math functions
  • More tailored controls / group properties into single control?
  • Make hotkeys configurable in the UI
  • Clean up internal style handling (separate styles altogether?, )
  • Use ResponsiveFrame to render multiple themes / screen sizes at the same time
  • Expand the color usages quick menu to allow picking all kinds of values. Maybe a textual widget ordered by how frequently used?
  • Hot reloading would be nice, as reloading the page to see your changes applied will reset the iframe's scroll position.
  • Better organizing of themes.
  • Personal editor theme that is applied separately from the theme that is being edited. (detect own stylesheets?)
  • Use sourcemap location and edits to auto generate a PR.
  • Improve elements with a hidden or hard to access state
  • Show current changes compared to server (maybe integrate with "current theme" component?)
  • As browser extension?
    • Address CORS (or detect + warn)
    • Address idle performance (lazy extract page variables / lazy include entire script)
  • Optimize root property updates
    • Updating root causes full style recalculation
      • Doesn't work well on large pages
      • e.g. Halfmoon
    • Could modify the CSS to work differently with the same result
    • Keep track of how browsers handle custom property updates, perhaps this gets optimized as it's quite common to set these on the root element.
  • Visualize overridden scope values, so that you can see what happens when removed from a scope.
    • However, it shouldn't result in a devtools like experience, where over half of what's shown is overridden rules.
  • Allow mapping hotkeys to any reducer action
    • Since reducers are already collected for history, it should be a small step to list this collection and allow setting a mapping.
    • Perhaps handle actions with a payload?
      • Some values can be entered manually (e.g. increment by a certain amount, choose a particular string like for panel layout)
      • Other values could come from some sort of context (e.g. the currently focused variable control)
      • Other approach is to tie it to event listeners. Might allow defining function once. Still need to check focus probably.
  • History actions
    • Clear newer / older separately
    • Clear specific state members
      • Apply the most recent state to all members in history.
    • Squash
    • Different edit modes when in the past
      • Current mode: discard future, prompt first if offset > 5
      • Optional prompt?
      • Save any "chopped" off futures?
      • Options determining which scenario (e.g. save when > 3 edits, discard when < 2)

Future theme structure

Currently themes are just a list of selectors with lists of properties. Eventually the theme should be a sort of "diff" compared to a current set of CSS files. New files can then be generated if the diff format allows to locate the source declaration for each item. It's unclear where the source code mapping should happen.

Declarations

Each item: selector + property (combined unique ID, this could be a single ID as well, anything that allows you to find the right source)

  • Updated decls (including adding properties, order by convention within selector)
    • data: new value
  • Removed decls
    • data: none

Other

  • Added selectors
    • data: selector text, source position, media query
    • Translate to multiple source CSS dialects (where?)
    • Ideally a minimal description of the source position requirements. E.g. only say "after X". It's then up to the code generating for a particular source to deterministically figure out the exact position.
  • Added media queries
    • data: condition text (maybe parsed a bit), source position
  • Added animations
  • Added resources (links, images, fonts)