From 512ec574fcff8621d07ba170937297c3e220c082 Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Sat, 15 Jan 2022 13:55:58 -0600 Subject: [PATCH] dark theme colors and rounded corners for notice boxes (#2) --- assets/sass/_override.sass | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/assets/sass/_override.sass b/assets/sass/_override.sass index 84a042e..61e6230 100644 --- a/assets/sass/_override.sass +++ b/assets/sass/_override.sass @@ -4,6 +4,9 @@ html --inlineColor: hsl(198, 100%, 24%) background: hsl(198, 0%, 91%) + .notices + border-radius: 0.5rem + @mixin darkmode &[data-mode="dim"] @@ -14,4 +17,18 @@ html background: hsl(198, 28%, 18%) .post_content a - color: hsl(198, 65%, 57%) \ No newline at end of file + color: hsl(198, 65%, 57%) + .notices + color: var(--light) + &.info + border-color: hsl(198, 100%, 32%) + background: hsl(198, 100%, 24%) + &.warning + border-color: hsl(9, 92%, 50%) + background: hsl(9, 100%, 38%) + &.note + border-color: hsl(46, 100%, 45%) + background: hsl(41, 100%, 36%) + &.tip + border-color: hsl(93, 85%, 32%) + background: hsl(93, 100%, 21%) \ No newline at end of file