Skip to content

Commit

Permalink
Merge pull request #371 from Netcentric/366-default-text-color
Browse files Browse the repository at this point in the history
366 - Changing text color to grey
  • Loading branch information
sonaldhekale authored Aug 1, 2023
2 parents ce31b61 + 8b24d2f commit e2eda6e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@
--background-color: var(--c-white);
--overlay-background-color: #eee;
--highlight-background-color: #ccc;
--text-color: var(--c-black);
--text-color: var(--c-dark-gray);
--input-color: var(--c-black);
--heading-color: var(--c-dark-plum);

/* fonts */
Expand Down Expand Up @@ -337,13 +338,13 @@ main input {
padding: 0.75rem 0.6rem;
border-radius: 0.25rem;
box-sizing: border-box;
border: 1px solid var(--text-color);
color: var(--text-color);
border: 1px solid var(--input-color);
color: var(--input-color);
background-color: var(--background-color);
}

main input:hover {
border: 1px solid var(--text-color);
border: 1px solid var(--input-color);
}

main .section {
Expand Down

0 comments on commit e2eda6e

Please sign in to comment.