Skip to content

Commit

Permalink
FIXED: Utility: Colors: CSS variables were not set properly, leading …
Browse files Browse the repository at this point in the history
…to unusable colors.
  • Loading branch information
SagnikGanguly96 committed Feb 14, 2023
1 parent 6e8e985 commit 6bb54e9
Showing 1 changed file with 28 additions and 17 deletions.
45 changes: 28 additions & 17 deletions src/css/utilities/colors.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
/*
* Copyright (c) 2022 SGNetworks. All rights reserved.
* Copyright (c) 2022-2023 SGNetworks. All rights reserved.
*
* The software is an exclusive copyright of "SGNetworks" and is provided as is exclusively with only "USAGE" access. "Modification", "Alteration", "Re-distribution" is completely prohibited.
* VIOLATING THE ABOVE TERMS IS A PUNISHABLE OFFENSE WHICH MAY LEAD TO LEGAL CONSEQUENCES.
*/

@import "background-colors.css";
@import "text-colors.css";
@import "gradients.css";

Expand All @@ -21,22 +22,6 @@
color: var(--sgn-success);
}

.text-primary {
color: var(--sgn-accent-primary);
}

.text-secondary {
color: var(--sgn-accent-secondary);
}

.text-black {
color: hsla(0, 0%, 0%, 1);
}

.text-white {
color: hsla(0, 0%, 100%, 1);
}


.tw-ic {
color: #55acee !important;
Expand All @@ -54,3 +39,29 @@
color: #4b515d !important;
}


:root {
--black: hsl(0, 0%, 0%);
--grey: hsl(0, 0%, 1%);
--cod-grey: hsl(0, 0%, 4%);
--all-black: hsl(0, 0%, 9%);
--eerie-black: hsl(0, 0%, 11%);
--filmpro-black: hsl(0, 0%, 16%);
--mine-shaft: hsl(0, 0%, 20%);
--jet: hsl(0, 0%, 20%);
--davy-grey: hsl(0, 0%, 33%);
--granite-gray: hsl(0, 0%, 40%);
--dim-gray: hsl(0, 0%, 41%);
--sonic-silver: hsl(0, 0%, 46%);
--gray: hsl(0, 0%, 50%);
--spanish-gray: hsl(0, 0%, 60%);
--quick-silver: hsl(0, 0%, 65%);
--dark-gray-x11: hsl(0, 0%, 66%);
--silver-chalice: hsl(0, 0%, 67%);
--gray-x11-gray: hsl(0, 0%, 75%);
--silver: hsl(0, 0%, 75%);
--light-gray: hsl(0, 0%, 83%);
--gainsboro: hsl(0, 0%, 86%);
--cultured: hsl(0, 0%, 96%);
--white: hsl(0, 0%, 100%);
}

0 comments on commit 6bb54e9

Please sign in to comment.