Project upload

This commit is contained in:
2022-04-24 03:02:39 -05:00
parent 92c64c30fe
commit c2ce33c3fb
71 changed files with 20006 additions and 0 deletions

24
sass/utils/_colors.scss Executable file
View File

@@ -0,0 +1,24 @@
/*------------------------------------------------------------------
[Text Colors]
------------------------------------------------------------------*/
.color-base { color: $color-base !important; }
.color-white { color: $color-white !important; }
.color-heading { color: $color-heading !important; }
.color-subtitle { color: $color-subtitle !important; }
.color-link { color: $color-link !important; }
.color-link-hover { color: $color-link-hover !important; }
.color-sky-light { color: $color-sky-light !important; }
/*------------------------------------------------------------------
[Background Colors]
------------------------------------------------------------------*/
.bg-color-base { background: $color-base !important; }
.bg-color-white { background: $color-white !important; }
.bg-color-heading { background: $color-heading !important; }
.bg-color-subtitle { background: $color-subtitle !important; }
.bg-color-link { background: $color-link !important; }
.bg-color-link-hover { background: $color-link-hover !important; }
.bg-color-sky-light { background: $color-sky-light !important; }