/* infrastructure/shell-css/spelling-error.css */

/* FILEMETA
ver: 0
exports:
style: tokens-only
effects: none
*/
/*
  Shell Spelling Error Theming
  - Overrides browser default red squiggly with theme-compliant underline.
  - Uses --theme-ui for underline color.
  - Chromium 130+ only (::spelling-error support).
*/

::spelling-error {
  text-decoration: underline wavy var(--theme-ui);
  color: inherit;
}

::grammar-error {
  text-decoration: underline wavy var(--theme-ui);
  color: inherit;
}