otterscan/src/index.css

31 lines
837 B
CSS
Raw Normal View History

2021-07-01 18:21:40 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
2021-09-01 21:12:35 +00:00
--color-button-fill: 244, 244, 245; /* gray-100 */
--color-button-hover-fill: 228, 228, 231; /* gray-200 */
--color-button-text: 113, 113, 122; /* gray-500 */
--color-from-border: 254, 226, 226;
--color-from-text: 220, 38, 38;
--color-from-fill: 254, 242, 242;
--color-to-fill: 236, 253, 245;
2021-08-31 07:02:26 +00:00
--color-table-row-hover: 243, 244, 246;
}
2021-09-01 20:56:12 +00:00
.test-theme {
2021-09-01 21:12:35 +00:00
--color-button-fill: 14, 165, 233; /* sky-500 */
--color-button-hover-fill: 56, 189, 248; /* sky-400 */
--color-button-text: 186, 230, 253; /* sky-200 */
2021-09-01 20:56:12 +00:00
--color-from-border: 251, 146, 60;
--color-from-text: 249, 115, 22;
--color-from-fill: 254, 215, 170;
--color-to-fill: 125, 211, 252;
--color-table-row-hover: 2, 132, 199;
}
}