diff --git a/src/app.postcss b/src/app.postcss index 019b07e0..5513fdab 100644 --- a/src/app.postcss +++ b/src/app.postcss @@ -21,15 +21,15 @@ body { /* =~= Theme On-X Colors =~= */ --on-primary: 255 255 255; - --on-secondary: 255 255 255; - --on-tertiary: 255 255 255; - --on-success: 255 255 255; - --on-warning: 255 255 255; - --on-error: 255 255 255; + --on-secondary: 0 0 0; + --on-tertiary: 0 0 0; + --on-success: 0 0 0; + --on-warning: 0 0 0; + --on-error: 0 0 0; --on-surface: 255 255 255; /* =~= Theme Colors =~= */ - /* primary | #3a1e3e */ + /* primary | #3A1E3E */ --color-primary-50: 225 221 226; --color-primary-100: 216 210 216; --color-primary-200: 206 199 207; @@ -41,65 +41,65 @@ body { --color-primary-800: 35 18 37; --color-primary-900: 28 15 30; - /* secondary | #4D7CA0 */ - --color-secondary-50: 228 235 241; - --color-secondary-100: 219 229 236; - --color-secondary-200: 211 222 231; - --color-secondary-300: 184 203 217; - --color-secondary-400: 130 163 189; - --color-secondary-500: 77 124 160; - --color-secondary-600: 69 112 144; - --color-secondary-700: 58 93 120; - --color-secondary-800: 46 74 96; - --color-secondary-900: 38 61 78; + /* secondary | #FFE880 */ + --color-secondary-50: 255 252 236; + --color-secondary-100: 255 250 230; + --color-secondary-200: 255 249 223; + --color-secondary-300: 255 246 204; + --color-secondary-400: 255 239 166; + --color-secondary-500: 255 232 128; + --color-secondary-600: 230 209 115; + --color-secondary-700: 191 174 96; + --color-secondary-800: 153 139 77; + --color-secondary-900: 125 114 63; - /* tertiary | #B455A0 */ - --color-tertiary-50: 244 230 241; - --color-tertiary-100: 240 221 236; - --color-tertiary-200: 236 213 231; - --color-tertiary-300: 225 187 217; - --color-tertiary-400: 203 136 189; - --color-tertiary-500: 180 85 160; - --color-tertiary-600: 162 77 144; - --color-tertiary-700: 135 64 120; - --color-tertiary-800: 108 51 96; - --color-tertiary-900: 88 42 78; + /* tertiary | #86BBD8 */ + --color-tertiary-50: 237 245 249; + --color-tertiary-100: 231 241 247; + --color-tertiary-200: 225 238 245; + --color-tertiary-300: 207 228 239; + --color-tertiary-400: 170 207 228; + --color-tertiary-500: 134 187 216; + --color-tertiary-600: 121 168 194; + --color-tertiary-700: 101 140 162; + --color-tertiary-800: 80 112 130; + --color-tertiary-900: 66 92 106; - /* success | #34815F */ - --color-success-50: 225 236 231; - --color-success-100: 214 230 223; - --color-success-200: 204 224 215; - --color-success-300: 174 205 191; - --color-success-400: 113 167 143; - --color-success-500: 52 129 95; - --color-success-600: 47 116 86; - --color-success-700: 39 97 71; - --color-success-800: 31 77 57; - --color-success-900: 25 63 47; + /* success | #DBFE87 */ + --color-success-50: 250 255 237; + --color-success-100: 248 255 231; + --color-success-200: 246 255 225; + --color-success-300: 241 255 207; + --color-success-400: 230 254 171; + --color-success-500: 219 254 135; + --color-success-600: 197 229 122; + --color-success-700: 164 191 101; + --color-success-800: 131 152 81; + --color-success-900: 107 124 66; - /* warning | #A97209 */ - --color-warning-50: 242 234 218; - --color-warning-100: 238 227 206; - --color-warning-200: 234 220 194; - --color-warning-300: 221 199 157; - --color-warning-400: 195 156 83; - --color-warning-500: 169 114 9; - --color-warning-600: 152 103 8; - --color-warning-700: 127 86 7; - --color-warning-800: 101 68 5; - --color-warning-900: 83 56 4; + /* warning | #F6AE2D */ + --color-warning-50: 254 243 224; + --color-warning-100: 253 239 213; + --color-warning-200: 253 235 203; + --color-warning-300: 251 223 171; + --color-warning-400: 249 198 108; + --color-warning-500: 246 174 45; + --color-warning-600: 221 157 41; + --color-warning-700: 185 131 34; + --color-warning-800: 148 104 27; + --color-warning-900: 121 85 22; - /* error | #EE2D48 */ - --color-error-50: 252 224 228; - --color-error-100: 252 213 218; - --color-error-200: 251 203 209; - --color-error-300: 248 171 182; - --color-error-400: 243 108 127; - --color-error-500: 238 45 72; - --color-error-600: 214 41 65; - --color-error-700: 179 34 54; - --color-error-800: 143 27 43; - --color-error-900: 117 22 35; + /* error | #F63E02 */ + --color-error-50: 254 226 217; + --color-error-100: 253 216 204; + --color-error-200: 253 207 192; + --color-error-300: 251 178 154; + --color-error-400: 249 120 7; + --color-error-500: 246 62 2; + --color-error-600: 221 56 2; + --color-error-700: 185 47 2; + --color-error-800: 148 37 1; + --color-error-900: 121 30 1; /* surface | #666666 */ --color-surface-50: 232 232 232; diff --git a/src/lib/components/Post.svelte b/src/lib/components/Post.svelte index 01439c65..8ad08bfb 100644 --- a/src/lib/components/Post.svelte +++ b/src/lib/components/Post.svelte @@ -20,7 +20,7 @@ export let post; -
+
@@ -44,7 +44,10 @@