From f31b7c26f44ac1fae67d28eb958c45d2190c0d87 Mon Sep 17 00:00:00 2001 From: Jacob Asper Date: Sun, 10 Jul 2022 19:04:01 -0400 Subject: [PATCH 1/3] make placeholder text for input darker --- public/css/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/css/style.css b/public/css/style.css index c261541..8de799c 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -426,7 +426,7 @@ table.darkTable { .api-test form input::placeholder { font-size: 1.5rem; - color: #afafaf; + color: #585858; font-weight: 600; } @@ -1472,4 +1472,4 @@ table.darkTable td, table.darkTable th { width: 80%; } -} /* End of Small (most) phone screens - 320px */ \ No newline at end of file +} /* End of Small (most) phone screens - 320px */ From ce9e13d41e6b375cda140cd4dde6e936ec361d56 Mon Sep 17 00:00:00 2001 From: Jacob Asper Date: Sun, 10 Jul 2022 19:13:25 -0400 Subject: [PATCH 2/3] Add new color for footer link --- public/css/style.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/public/css/style.css b/public/css/style.css index 8de799c..62b244c 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -72,6 +72,7 @@ html { --secondary: rgb(220, 222, 255); --accent: rgb(240, 211, 247); --text-accent: #b010d8; + --text-accent-dark-background: #ea97ff; } a:hover * { @@ -426,7 +427,7 @@ table.darkTable { .api-test form input::placeholder { font-size: 1.5rem; - color: #585858; + color: #afafaf; font-weight: 600; } @@ -540,7 +541,7 @@ footer img { } footer a { - color: var(--text-accent) + color: var(--text-accent-dark-background) } hr { From 6069ee96295cb692ef7d4635d3853b72e88ecf78 Mon Sep 17 00:00:00 2001 From: Jacob Asper Date: Sun, 10 Jul 2022 19:15:34 -0400 Subject: [PATCH 3/3] Changed placeholder color back to the accessible one I accidentally removed this change --- public/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/css/style.css b/public/css/style.css index 62b244c..5a4da9e 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -427,7 +427,7 @@ table.darkTable { .api-test form input::placeholder { font-size: 1.5rem; - color: #afafaf; + color: #585858; font-weight: 600; }