Fix color

This commit is contained in:
Dan Abramov
2022-09-01 03:03:06 +01:00
parent 537e0a354d
commit 1319e8f55a

View File

@@ -28,7 +28,7 @@ const getColor = (message: SandpackMessageConsoleMethods): string => {
} else if (message === 'error') {
return 'text-red-40';
} else {
return 'text-primary';
return 'text-secondary dark:text-secondary-dark';
}
};