Chorke Color Scheme: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
== Reference site == | |||
Chorke Color Scheme is one of the important most factor. We love green and it's variation | Chorke Color Scheme is one of the important most factor. We love green and it's variation | ||
Line 9: | Line 10: | ||
# [http://doc.chorke.org/theme/material/#!/app/matcolors Angle Matcolors] | # [http://doc.chorke.org/theme/material/#!/app/matcolors Angle Matcolors] | ||
#[https://www.cssmatic.com/gradient-generator Gradient Generator] | #[https://www.cssmatic.com/gradient-generator Gradient Generator] | ||
== Collection of Green Gradient == | |||
=== From [http://bitbybitblog.com/environment-variables-mac/ www.bitbybitblog.com] === | |||
<syntaxhighlight lang="css"> | |||
.cki-banner-bg { | |||
top: 5px; | |||
width: 100%; | |||
height: 100px; | |||
background: #1B6B5B; | |||
/* background-color: #000000; */ | |||
/* background-color: #0CBE88; */ | |||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#33A26A', endColorstr='#1B6B5B'); | |||
background: -webkit-gradient(linear, left top, left bottom, from(#33A26A), to(#1B6B5B)); | |||
background: -moz-linear-gradient(top, #33A26A, #1B6B5B); | |||
} | |||
</syntaxhighlight> |
Revision as of 08:57, 15 December 2017
Reference site
Chorke Color Scheme is one of the important most factor. We love green and it's variation
- Gradient Button
- IBBL Banner
- Download Button
- Download Now
- Download Button & Banner
- LaTex Theme
- Angle Matcolors
- Gradient Generator
Collection of Green Gradient
From www.bitbybitblog.com
.cki-banner-bg {
top: 5px;
width: 100%;
height: 100px;
background: #1B6B5B;
/* background-color: #000000; */
/* background-color: #0CBE88; */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#33A26A', endColorstr='#1B6B5B');
background: -webkit-gradient(linear, left top, left bottom, from(#33A26A), to(#1B6B5B));
background: -moz-linear-gradient(top, #33A26A, #1B6B5B);
}