@@ -7,6 +7,7 @@ exports[`createTheme > should allow for themes to be scoped 1`] = `
77 type = " text/css"
88 >
99 @layer vuetify-utilities.theme {
10+ @layer base {
1011 :root {
1112 --v-theme-background: 255 ,255,255;
1213 --v-theme-background-overlay-multiplier: 1 ;
@@ -63,6 +64,8 @@ exports[`createTheme > should allow for themes to be scoped 1`] = `
6364 --v-theme-on-kbd: 0 , 0, 0;
6465 --v-theme-code: 245 , 245, 245;
6566 --v-theme-on-code: 0 , 0, 0;
67+ --v-theme-on-dark: 255 , 255, 255;
68+ --v-theme-on-light: 0 , 0, 0;
6669 }
6770 .v - theme -- light {
6871 color-scheme: normal ;
@@ -121,6 +124,8 @@ exports[`createTheme > should allow for themes to be scoped 1`] = `
121124 --v-theme-on-kbd: 0 , 0, 0;
122125 --v-theme-code: 245 , 245, 245;
123126 --v-theme-on-code: 0 , 0, 0;
127+ --v-theme-on-dark: 255 , 255, 255;
128+ --v-theme-on-light: 0 , 0, 0;
124129 }
125130 .v - theme -- dark {
126131 color-scheme: dark ;
@@ -179,6 +184,9 @@ exports[`createTheme > should allow for themes to be scoped 1`] = `
179184 --v-theme-on-kbd: 255 , 255, 255;
180185 --v-theme-code: 52 , 52, 52;
181186 --v-theme-on-code: 204 , 204, 204;
187+ --v-theme-on-dark: 255 , 255, 255;
188+ --v-theme-on-light: 0 , 0, 0;
189+ }
182190 }
183191 @layer background {
184192 .bg - background {
@@ -374,6 +382,7 @@ exports[`createTheme > should allow for themes to be scoped 1`] = `
374382 type = " text/css"
375383 >
376384 @layer vuetify-utilities.theme {
385+ @layer base {
377386 :where(#my -app ) {
378387 -- v - theme - background : 255 ,255 ,255 ;
379388 -- v - theme - background - overlay - multiplier : 1 ;
@@ -430,6 +439,8 @@ exports[`createTheme > should allow for themes to be scoped 1`] = `
430439 -- v - theme - on - kbd : 0 , 0 , 0 ;
431440 -- v - theme - code : 245 , 245 , 245 ;
432441 -- v - theme - on - code : 0 , 0 , 0 ;
442+ -- v - theme - on - dark : 255 , 255 , 255 ;
443+ -- v - theme - on - light : 0 , 0 , 0 ;
433444 }
434445 :where(#my -app ) .v-theme--light {
435446 color - scheme : normal ;
@@ -488,6 +499,8 @@ exports[`createTheme > should allow for themes to be scoped 1`] = `
488499 -- v - theme - on - kbd : 0 , 0 , 0 ;
489500 -- v - theme - code : 245 , 245 , 245 ;
490501 -- v - theme - on - code : 0 , 0 , 0 ;
502+ -- v - theme - on - dark : 255 , 255 , 255 ;
503+ -- v - theme - on - light : 0 , 0 , 0 ;
491504 }
492505 :where(#my -app ) .v-theme--dark {
493506 color - scheme : dark ;
@@ -546,6 +559,9 @@ exports[`createTheme > should allow for themes to be scoped 1`] = `
546559 -- v - theme - on - kbd : 255 , 255 , 255 ;
547560 -- v - theme - code : 52 , 52 , 52 ;
548561 -- v - theme - on - code : 204 , 204 , 204 ;
562+ -- v - theme - on - dark : 255 , 255 , 255 ;
563+ -- v - theme - on - light : 0 , 0 , 0 ;
564+ }
549565 }
550566 @layer background {
551567 :where(#my -app ) .bg-background {
@@ -746,6 +762,7 @@ exports[`createTheme > should create style element 1`] = `
746762 type = " text/css"
747763 >
748764 @layer vuetify-utilities.theme {
765+ @layer base {
749766 :root {
750767 --v-theme-background: 255 ,255,255;
751768 --v-theme-background-overlay-multiplier: 1 ;
@@ -802,6 +819,8 @@ exports[`createTheme > should create style element 1`] = `
802819 --v-theme-on-kbd: 0 , 0, 0;
803820 --v-theme-code: 245 , 245, 245;
804821 --v-theme-on-code: 0 , 0, 0;
822+ --v-theme-on-dark: 255 , 255, 255;
823+ --v-theme-on-light: 0 , 0, 0;
805824 }
806825 .v - theme -- light {
807826 color-scheme: normal ;
@@ -860,6 +879,8 @@ exports[`createTheme > should create style element 1`] = `
860879 --v-theme-on-kbd: 0 , 0, 0;
861880 --v-theme-code: 245 , 245, 245;
862881 --v-theme-on-code: 0 , 0, 0;
882+ --v-theme-on-dark: 255 , 255, 255;
883+ --v-theme-on-light: 0 , 0, 0;
863884 }
864885 .v - theme -- dark {
865886 color-scheme: dark ;
@@ -918,6 +939,9 @@ exports[`createTheme > should create style element 1`] = `
918939 --v-theme-on-kbd: 255 , 255, 255;
919940 --v-theme-code: 52 , 52, 52;
920941 --v-theme-on-code: 204 , 204, 204;
942+ --v-theme-on-dark: 255 , 255, 255;
943+ --v-theme-on-light: 0 , 0, 0;
944+ }
921945 }
922946 @layer background {
923947 .bg - background {
0 commit comments