Merge branch 'add-colors' into 'main'

add colors to main file

See merge request tacowolf/www!4
This commit is contained in:
Daniel Gallegos 2023-01-12 00:30:07 +00:00
commit e90e51b7fe
3 changed files with 37 additions and 0 deletions

13
.gitignore vendored Normal file
View file

@ -0,0 +1,13 @@
# Generated files by hugo
/public/
/resources/_gen/
/assets/jsconfig.json
hugo_stats.json
# Executable may be added to repository
hugo.exe
hugo.darwin
hugo.linux
# Temporary lock file while building
/.hugo_build.lock

23
assets/sass/colors.sass Normal file
View file

@ -0,0 +1,23 @@
$black: #121212
$black-alt: #5d5d5d
$red: #d74c4c
$red-alt: #f086aa
$green: #82e64e
$green-alt: #4d7936
$yellow: #fcf36e
$yellow-alt: #b0aa4d
$blue: #4faaf4
$blue-alt: #2f6692
$magenta: #b87ac2
$magenta-alt: #9575cd
$cyan: #4bb5c1
$cyan-alt: #4bb5c1
$white: #eeeeee
$white-alt: #e2e2e5

View file

@ -2,4 +2,5 @@
@import "layout" @import "layout"
@import "module" @import "module"
@import "state" @import "state"
@import "colors"
@import "theme" @import "theme"