https://github.com/rawnly/coloriaz.css-sass-version
https://github.com/rawnly/coloriaz.css-sass-version
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rawnly/coloriaz.css-sass-version
- Owner: rawnly
- Created: 2016-08-17T23:26:29.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-08-21T17:55:10.000Z (almost 10 years ago)
- Last Synced: 2025-05-19T11:46:02.089Z (about 1 year ago)
- Language: CSS
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Coloraiz.scss (SASS Version)
##How to
Copy and paste this:
```sass
@import 'https://cdn.rawgit.com/Rawnly/Colors-Variables/master/colors.scss';
```
or download the file and then include it:
```sass
@import 'colors';
```
and then you can use it like
```sass
.foo {
color: white;
background-color: $teal-10;
}
```
##Availables Colors

```sass
$blue //basic color [$blue-7]: #0A7BFF;
$purple //basic color [$purple-7]: #7F42B3;
$pink //basic color [$pink-7]: #F51A71;
$lred //basic color [$lred-7]: #E01F48;
$orange //basic color [$orange-7]: #FF310B;
$yellow //basic color [$yellow-7]: #F9DF00;
$lime //basic color [$lime-7]: #BFFF00;
$green //basic color [$green-7]: #42B37F;
$marine //basic color [$marine-7]: #1FE0B6;
$teal //basic color [$teal-7]: #33CCBE;
$azure //basic color [$azure-7]: #61AEBB;
$lgray //basic color [$lgray-7]: #65778B;
$gray //basic color [$gray-7]: #7A7A7A;
```