:root { font-size: 16px; --main-scroll: theme('colors.grayscale.300'); --panels-scroll: hsl(180, 2%, 17%); --toast-background: hsla(240, 12%, 16%, 0.85); --toast-secondary: hsla(240, 12%, 16%, 0.15); --toast-text: hsla(0, 0%, 100%, 0.85); --primary-color: hsl(210, 100%, 52%); // will remove variable --primary-text: theme('colors.grayscale.870'); // will remove variable --secondary-color: hsl(46, 100%, 57%); // will remove variable } :root[data-theme='light'] { --main-background: theme('colors.white'); --secondary-background: theme('colors.grayscale.930'); --foreground: theme('colors.grayscale.200'); --panels-background: hsl(216, 4%, 78%); --table-bg: theme('colors.white'); --table-zebra: theme('colors.grayscale.900'); --table-highlight: theme('colors.grayscale.840'); } :root[data-theme='dark'] { --main-background: hsl(240, 10%, 8%); --secondary-background: hsl(240, 12%, 16%); // e.g. search bar bg --foreground: theme('colors.grayscale.930'); // primary text + icons in main + search --panels-background: hsl(240, 15%, 12%); // panel left + right bg --table-bg: hsl(240, 10%, 8%); // e.g. results table bg 1st row --table-zebra: hsl(240, 15%, 11%); // e.g. results table bg 2nd alternate --table-highlight: hsl(240, 10%, 22%); // e.g. hover bg color on table selection } :root[data-theme='purple'] { --main-background: hsl(261, 74%, 6%); --secondary-background: hsl(257, 61%, 10%); --foreground: theme('colors.grayscale.930'); --panels-background: hsl(257, 70%, 9%); --table-bg: hsl(261, 74%, 6%); --table-zebra: hsl(257, 61%, 10%); --table-highlight: hsl(257, 66%, 27%); }