Compare commits

...

1 Commits

Author SHA1 Message Date
Error202 c390de39c5 Colors 2 years ago
  1. 2
      README.md
  2. 10
      assets/scss/computed/colors-list.scss
  3. 25
      assets/scss/variables/colors.scss
  4. 2
      package.json
  5. 2
      public/zx.style.css

2
README.md

@ -1,7 +1,7 @@
# Zertex Style # Zertex Style
## Installation ## Installation
`npm i zxstyle` `npm i git+http://xapple.ru:3000/Zertex/Style.git`
## Description : ## Description :
Simple CSS library Simple CSS library

10
assets/scss/computed/colors-list.scss

@ -2,6 +2,16 @@
// COLORS // COLORS
@each $key, $color in $colors-light {
.fg-#{$key} {color: $color}
.bg-#{$key} {background-color: $color}
}
@each $key, $color in $colors-dark {
.dark .fg-#{$key} {color: $color}
.dark .bg-#{$key} {background-color: $color}
}
//@each $key, $color in $colors-all { //@each $key, $color in $colors-all {
// .fg-#{$key} {color: $color} // .fg-#{$key} {color: $color}
// .bg-#{$key} {background-color: $color} // .bg-#{$key} {background-color: $color}

25
assets/scss/variables/colors.scss

@ -12,18 +12,6 @@ $themes: (
"black": #000000, "black": #000000,
"white": #FFFFFF, "white": #FFFFFF,
"gray": #A7A6A7, "gray": #A7A6A7,
/*"brown": #8C7063,
"peach": #FEABA0,
"maroon": #FEABA0,
"blue-gray": #8DA7AF,
"pea-green": #48AF4F,
"cyan": #14FFFE,
"navy": #0F476B,
"pink": #F16192,
"mustard": #F16192,
"coral": #FEABA0,
"indigo": #FEABA0,
"hot-pink": #FC60CB*/
) )
), ),
light: ( light: (
@ -39,19 +27,6 @@ $themes: (
"black": #000000, "black": #000000,
"white": #FFFFFF, "white": #FFFFFF,
"gray": #A7A6A7, "gray": #A7A6A7,
/*"brown": #8C7063,
"peach": #FEABA0,
"maroon": #FEABA0,
"gray": #A7A6A7,
"blue-gray": #8DA7AF,
"pea-green": #48AF4F,
"cyan": #14FFFE,
"navy": #0F476B,
"pink": #F16192,
"mustard": #F16192,
"coral": #FEABA0,
"indigo": #FEABA0,
"hot-pink": #FC60CB*/
) )
) )
); );

2
package.json

@ -1,6 +1,6 @@
{ {
"name": "zertex-style", "name": "zertex-style",
"version": "1.0.1", "version": "1.0.2",
"author": "Egor Oldenburger <error-202@mail.ru>", "author": "Egor Oldenburger <error-202@mail.ru>",
"license": "MIT", "license": "MIT",
"description": "CSS library", "description": "CSS library",

2
public/zx.style.css

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save