Chorke Color Scheme: Difference between revisions

From Chorke Wiki
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

  1. Gradient Button
  2. IBBL Banner
  3. Download Button
  4. Download Now
  5. Download Button & Banner
  6. LaTex Theme
  7. Angle Matcolors
  8. 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);
}