Use semantic colors in themes (#5796)

Co-authored-by: Jacob Richman <jacob314@gmail.com>
This commit is contained in:
Miguel Solorio 2025-08-07 16:11:35 -07:00 committed by GitHub
parent 4f2974dbfe
commit 785ee5d59a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
22 changed files with 396 additions and 198 deletions

View file

@ -5,6 +5,7 @@
*/
import { lightTheme, Theme, type ColorsTheme } from './theme.js';
import { lightSemanticColors } from './semantic-tokens.js';
const googleCodeColors: ColorsTheme = {
type: 'light',
@ -141,4 +142,5 @@ export const GoogleCode: Theme = new Theme(
},
},
googleCodeColors,
lightSemanticColors,
);