@@ -820,63 +820,63 @@ async function updateBootstrapFromBslib(
820820 for ( let line of varContents ) {
821821 line = line . replaceAll (
822822 "var(--#{$prefix}font-sans-serif)" ,
823- "$font-family-sans-serif"
823+ "$$ font-family-sans-serif"
824824 ) ;
825825 line = line . replaceAll (
826826 "var(--#{$prefix}font-monospace)" ,
827- "$font-family-monospace"
827+ "$$ font-family-monospace"
828828 ) ;
829829 line = line . replaceAll (
830830 "var(--#{$prefix}success-rgb)" ,
831- "$success"
831+ "$$ success"
832832 ) ;
833833 line = line . replaceAll (
834834 "var(--#{$prefix}danger-rgb)" ,
835- "$danger"
835+ "$$ danger"
836836 ) ;
837837 line = line . replaceAll (
838838 "var(--#{$prefix}body-color-rgb)" ,
839- "$body-color"
839+ "$$ body-color"
840840 ) ;
841841 line = line . replaceAll (
842842 "var(--#{$prefix}body-bg-rgb)" ,
843- "$body-bg"
843+ "$$ body-bg"
844844 ) ;
845845 line = line . replaceAll (
846846 "var(--#{$prefix}emphasis-color-rgb)" ,
847- "$body-emphasis-color"
847+ "$$ body-emphasis-color"
848848 ) ;
849849 line = line . replaceAll (
850850 / R G B A ? \( v a r \( - - # \{ \$ p r e f i x \} e m p h a s i s - c o l o r - r g b , ( .* ?) \) .* ?\) / gm,
851- "$body-emphasis-color"
851+ "$$ body-emphasis-color"
852852 ) ;
853853 line = line . replaceAll (
854854 "var(--#{$prefix}secondary-color)" ,
855- "$body-secondary-color"
855+ "$$ body-secondary-color"
856856 ) ;
857857 line = line . replaceAll (
858858 "var(--#{$prefix}secondary-bg)" ,
859- "$body-secondary-bg"
859+ "$$ body-secondary-bg"
860860 ) ;
861861 line = line . replaceAll (
862862 "var(--#{$prefix}tertiary-bg)" ,
863- "$body-tertiary-bg"
863+ "$$ body-tertiary-bg"
864864 ) ;
865865 line = line . replaceAll (
866866 "var(--#{$prefix}tertiary-color)" ,
867867 "$body-tertiary-color"
868868 ) ;
869869 line = line . replaceAll (
870870 "var(--#{$prefix}emphasis-bg)" ,
871- "$body-emphasis-bg"
871+ "$$ body-emphasis-bg"
872872 ) ;
873873 line = line . replaceAll (
874874 "var(--#{$prefix}emphasis-color)" ,
875- "$body-emphasis-color"
875+ "$$ body-emphasis-color"
876876 ) ;
877877 line = line . replaceAll (
878878 "$emphasis-color-rgb" ,
879- "$body-emphasis-color"
879+ "$$ body-emphasis-color"
880880 ) ;
881881
882882 line = line . replaceAll ( / v a r \( - - # \{ \$ p r e f i x \} ( .* ?) \) / gm, "$$$1" ) ;
0 commit comments