diff --git a/packages/design-system/src/styles/styles.scss b/packages/design-system/src/styles/styles.scss
index adba8417305..4716efc3442 100644
--- a/packages/design-system/src/styles/styles.scss
+++ b/packages/design-system/src/styles/styles.scss
@@ -21,4 +21,4 @@
 @import "theme/oc-width";
 @import "theme/tooltip";
 
-/* SHITTY MARKER */
+/* STYLES STRIP IMPORTS MARKER */
diff --git a/rollup.config.mjs b/rollup.config.mjs
index c8b301117af..90d911db154 100644
--- a/rollup.config.mjs
+++ b/rollup.config.mjs
@@ -47,7 +47,7 @@ const plugins = [
   {
     transform(src, id) {
       if (id.includes('rollup-plugin-vue=styles')) {
-        const split = src.split('/* SHITTY MARKER */')
+        const split = src.split('/* STYLES STRIP IMPORTS MARKER */')
         const newSrc = split[split.length-1]
         return {
           code: newSrc,