diff --git a/dist/css/components/workspaces.css b/dist/css/components/workspaces.css
new file mode 100644
index 0000000000000000000000000000000000000000..2a7a8e31d5ad118eb00c051ad13c201eceade59e
--- /dev/null
+++ b/dist/css/components/workspaces.css
@@ -0,0 +1,7 @@
+tr.active-workspace {
+  color: var(--gin-color-primary-active);
+  font-size: var(--gin-font-size);
+  font-weight: var(--gin-font-weight-semibold);
+  background: var(--gin-bg-header);
+}
+
diff --git a/gin.info.yml b/gin.info.yml
index 3ec3ca1e5207f23b091fcb3594ea4ffc63699b48..452d84852d5b9b193e999f7bf64d60ee811cc7b3 100755
--- a/gin.info.yml
+++ b/gin.info.yml
@@ -113,6 +113,8 @@ libraries-extend:
     - gin/layout_paragraphs2
   responsive_preview/drupal.responsive-preview:
     - gin/responsive_preview
+  workspaces/drupal.workspaces.overview:
+    - gin/workspaces
 
 ckeditor_stylesheets:
   - dist/css/theme/accent.css
diff --git a/gin.libraries.yml b/gin.libraries.yml
index 44d886ae16e9ce5b22e9e1c0d5baeec7b0fee8e2..631035543c82028d62ca89498ab4ac0a20cb5302 100644
--- a/gin.libraries.yml
+++ b/gin.libraries.yml
@@ -356,3 +356,8 @@ legacy_css:
   css:
     theme:
       dist/css/theme/legacy.css: { minified: false }
+
+workspaces:
+  css:
+    component:
+      dist/css/components/workspaces.css: { minified: false }
diff --git a/styles/components/workspaces.scss b/styles/components/workspaces.scss
new file mode 100644
index 0000000000000000000000000000000000000000..520a84ff906761a77caac8241f3a188ba01b5f57
--- /dev/null
+++ b/styles/components/workspaces.scss
@@ -0,0 +1,6 @@
+tr.active-workspace {
+  color: var(--gin-color-primary-active);
+  font-size: var(--gin-font-size);
+  font-weight: var(--gin-font-weight-semibold);
+  background: var(--gin-bg-header);
+}
diff --git a/webpack.config.js b/webpack.config.js
index 4c4161f2db8fd368a15957daa6734c3f09fbf24c..fec8ffd4c6e1078c5ee6f0bab1aa7e20c38daf81 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -65,6 +65,7 @@ module.exports = {
     'components/upgrade_status': ['./styles/components/upgrade_status.scss'],
     'components/webform': ['./styles/components/webform.scss'],
     'components/workbench': ['./styles/components/workbench.scss'],
+    'components/workspaces': ['./styles/components/workspaces.scss'],
     // Layout
     'layout/navigation': ['./styles/layout/navigation.scss'],
     'layout/toolbar': ['./styles/layout/toolbar.scss'],