toadstool 0.0.0.1 → 0.0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/bin/toadstool +80 -33
- data/lib/stylesheets/_toadstool-styleguide.scss +33 -0
- data/lib/stylesheets/toadstool/_buttons.scss +22 -0
- data/lib/stylesheets/toadstool/_config.scss +228 -0
- data/lib/stylesheets/toadstool/_design.scss +55 -0
- data/lib/stylesheets/toadstool/_forms.scss +18 -0
- data/lib/stylesheets/toadstool/_grids.scss +48 -0
- data/lib/stylesheets/toadstool/_modules.scss +3 -0
- data/{sass → lib/stylesheets/toadstool}/_typography.scss +43 -11
- data/lib/stylesheets/toadstool/_ui_patterns.scss +3 -0
- data/lib/stylesheets/toadstool/_web_fonts.scss +11 -0
- data/lib/stylesheets/toadstool/modules/_footer.scss +7 -0
- data/lib/stylesheets/toadstool/modules/_header.scss +41 -0
- data/lib/stylesheets/toadstool/modules/_main_nav.scss +49 -0
- data/lib/stylesheets/toadstool/ui_patterns/_color_grid.scss +220 -0
- data/lib/stylesheets/toadstool/ui_patterns/_emBox.scss +16 -0
- data/lib/stylesheets/toadstool/ui_patterns/_prettify.scss +136 -0
- data/lib/templates/module/sass/_example_module.scss +4 -0
- data/{sass/modules/example_module → lib/templates/module/sass}/_extends.scss +0 -0
- data/{sass/modules/example_module → lib/templates/module/sass}/_mixins.scss +0 -0
- data/{views/modules/example_module → lib/templates/module/views}/module.erb +0 -0
- data/{views/modules/example_module → lib/templates/module/views}/module.js +0 -0
- data/{views/modules/example_module → lib/templates/module/views}/view.erb +0 -0
- data/{Gemfile → lib/templates/project/Gemfile} +1 -3
- data/lib/templates/project/Rakefile +21 -0
- data/{config.rb → lib/templates/project/config.rb} +5 -3
- data/lib/templates/project/config.ru +8 -0
- data/{doc-src → lib/templates/project/doc-src}/SASS-Guidelines.md +0 -0
- data/lib/templates/project/doc-src/changelog.md +22 -0
- data/{doc-src → lib/templates/project/doc-src}/mit_license.md +0 -0
- data/{sass/modules/example_module/readme.md → lib/templates/project/doc-src/module-sass-readme.md} +0 -0
- data/{public → lib/templates/project/public}/images/toadstool-logo.png +0 -0
- data/{public → lib/templates/project/public}/javascripts/application.js +12 -1
- data/lib/templates/project/public/javascripts/jquery-1.8.3.min.js +2 -0
- data/{public → lib/templates/project/public}/javascripts/lang-css.js +0 -0
- data/{public → lib/templates/project/public}/javascripts/lang-yaml.js +0 -0
- data/lib/templates/project/public/javascripts/modernizr-2.6.1.js +1384 -0
- data/{public → lib/templates/project/public}/javascripts/modernizr.mods.js +0 -0
- data/{public → lib/templates/project/public}/javascripts/prettify.js +0 -0
- data/lib/templates/project/readme.md +79 -0
- data/lib/templates/project/sass/_buttons.scss +37 -0
- data/{sass → lib/templates/project/sass}/_config.scss +81 -74
- data/{sass → lib/templates/project/sass}/_design.scss +0 -0
- data/lib/templates/project/sass/_forms.scss +41 -0
- data/{sass → lib/templates/project/sass}/_reset.scss +0 -0
- data/lib/templates/project/sass/_typography.scss +98 -0
- data/lib/templates/project/sass/buttons/_extends.scss +3 -0
- data/lib/templates/project/sass/buttons/_mixins.scss +2 -0
- data/lib/templates/project/sass/color/_color_defaults.scss +98 -0
- data/{sass → lib/templates/project/sass}/color/_color_math.scss +1 -1
- data/lib/templates/project/sass/color/_extends.scss +109 -0
- data/{sass → lib/templates/project/sass}/color/_grayscale_math.scss +0 -0
- data/lib/templates/project/sass/color/readme.md +63 -0
- data/lib/templates/project/sass/forms/_extends.scss +3 -0
- data/lib/templates/project/sass/forms/_mixins.scss +3 -0
- data/{sass/_ui_patterns.scss → lib/templates/project/sass/layouts/_example_layout.scss} +0 -0
- data/lib/templates/project/sass/readme.md +142 -0
- data/{sass → lib/templates/project/sass}/style.scss +6 -10
- data/{sass → lib/templates/project/sass}/toadstool.scss +1 -1
- data/lib/templates/project/sass/typography/_extends.scss +13 -0
- data/lib/templates/project/sass/typography/_mixins.scss +2 -0
- data/{sass → lib/templates/project/sass/typography}/_web_fonts.scss +2 -5
- data/lib/templates/project/toadstool.rb +94 -0
- data/lib/templates/project/views/color_palettes.erb +371 -0
- data/lib/templates/project/views/forms.erb +40 -0
- data/lib/templates/project/views/forms/disabled_button.erb +18 -0
- data/lib/templates/project/views/forms/password_input.erb +22 -0
- data/lib/templates/project/views/forms/primary_button.erb +18 -0
- data/lib/templates/project/views/forms/readme.md +2 -0
- data/{views → lib/templates/project/views}/forms/username_input.erb +0 -0
- data/{views → lib/templates/project/views}/grid.erb +0 -0
- data/{views → lib/templates/project/views}/grid24.erb +0 -0
- data/{views → lib/templates/project/views}/grids/grid_arguments.erb +0 -0
- data/{views → lib/templates/project/views}/grids/use_definition.erb +0 -0
- data/{views → lib/templates/project/views}/layout.erb +2 -2
- data/{views/modules/example_module → lib/templates/project/views/modules}/readme.md +6 -4
- data/lib/templates/project/views/shared/_code_toggle.erb +10 -0
- data/lib/templates/project/views/shared/_html_example.erb +5 -0
- data/{views → lib/templates/project/views}/shared/_main_footer.erb +0 -0
- data/{views → lib/templates/project/views}/shared/_main_header.erb +0 -0
- data/{views → lib/templates/project/views}/shared/_main_nav.erb +0 -0
- data/{views → lib/templates/project/views}/shared/_toadstool_subheader.erb +0 -0
- data/lib/templates/project/views/typography.erb +35 -0
- data/lib/templates/project/views/typography/body_copy.erb +2 -0
- data/{views → lib/templates/project/views}/typography/body_links.erb +0 -0
- data/{sass/ui_patterns/_example.scss → lib/templates/project/views/typography/general_typography.erb} +0 -0
- data/{views → lib/templates/project/views}/typography/headings.erb +0 -0
- data/{views → lib/templates/project/views}/typography/vertical_rhythm.erb +0 -0
- data/{views → lib/templates/project/views}/typography/web_fonts.erb +0 -0
- data/lib/templates/project/views/ui_patterns/forms/primary_buttons.erb +8 -0
- data/lib/templates/project/views/ui_patterns/forms/text_input.erb +11 -0
- data/lib/templates/project/views/ui_patterns/forms/text_input_error.erb +11 -0
- data/{views → lib/templates/project/views}/ui_patterns/readme.md +4 -3
- data/lib/templates/project/views/ui_patterns/typography/_body_copy.erb +2 -0
- data/lib/templates/project/views/ui_patterns/typography/_headings.erb +6 -0
- data/lib/templates/ui_pattern/sass/_example_pattern.scss +4 -0
- data/lib/templates/ui_pattern/sass/_extends.scss +0 -0
- data/lib/templates/ui_pattern/sass/_mixins.scss +0 -0
- data/{views/ui_patterns → lib/templates/ui_pattern/views}/example.erb +0 -0
- data/lib/toadstool.rb +4 -0
- data/lib/toadstool/version.rb +3 -0
- metadata +120 -109
- data/Rakefile +0 -4
- data/config.ru +0 -6
- data/doc-src/What-Is-Toadstool.md +0 -44
- data/doc-src/changelog.md +0 -29
- data/doc-src/config.md +0 -18
- data/doc-src/mixin_directory.md +0 -17
- data/doc-src/sass.md +0 -4
- data/lib/RackServer.rb +0 -93
- data/public/fonts/fontawesome-webfont.eot +0 -0
- data/public/fonts/fontawesome-webfont.svg +0 -255
- data/public/fonts/fontawesome-webfont.ttf +0 -0
- data/public/fonts/fontawesome-webfont.woff +0 -0
- data/public/fonts/zocial-regular-webfont.eot +0 -0
- data/public/fonts/zocial-regular-webfont.svg +0 -138
- data/public/fonts/zocial-regular-webfont.ttf +0 -0
- data/public/fonts/zocial-regular-webfont.woff +0 -0
- data/public/javascripts/css_browser_selector.js +0 -8
- data/public/javascripts/lang-apollo.js +0 -2
- data/public/javascripts/lang-clj.js +0 -18
- data/public/javascripts/lang-go.js +0 -1
- data/public/javascripts/lang-hs.js +0 -2
- data/public/javascripts/lang-lisp.js +0 -3
- data/public/javascripts/lang-lua.js +0 -2
- data/public/javascripts/lang-ml.js +0 -2
- data/public/javascripts/lang-n.js +0 -4
- data/public/javascripts/lang-proto.js +0 -1
- data/public/javascripts/lang-scala.js +0 -2
- data/public/javascripts/lang-sql.js +0 -2
- data/public/javascripts/lang-tex.js +0 -1
- data/public/javascripts/lang-vb.js +0 -2
- data/public/javascripts/lang-vhdl.js +0 -3
- data/public/javascripts/lang-wiki.js +0 -2
- data/public/javascripts/lang-xq.js +0 -3
- data/public/javascripts/selectivizr-min.js +0 -5
- data/public/stylesheets/style.css +0 -615
- data/public/stylesheets/toadstool.css +0 -1643
- data/readme.md +0 -37
- data/sass/_buttons.scss +0 -20
- data/sass/_forms.scss +0 -18
- data/sass/_modules.scss +0 -12
- data/sass/buttons/_cupid_config.scss +0 -20
- data/sass/buttons/_minimal_config.scss +0 -15
- data/sass/color/_extends.scss +0 -291
- data/sass/ui_patterns/_color_grid.scss +0 -286
- data/toadstool.rb +0 -84
- data/views/abstract_colors.erb +0 -1
- data/views/alerts.erb +0 -1
- data/views/buttons.erb +0 -1
- data/views/color_palettes.erb +0 -221
- data/views/forms.erb +0 -24
- data/views/forms/disabled_button.erb +0 -18
- data/views/forms/password_input.erb +0 -22
- data/views/forms/primary_button.erb +0 -18
- data/views/modules/readme.md +0 -10
- data/views/semantic_colors.erb +0 -1
- data/views/shared/_html_example.erb +0 -31
- data/views/shared/_sass_example.erb +0 -10
- data/views/typography.erb +0 -17
- data/views/typography/body_copy.erb +0 -19
- data/views/typography/general_typography.erb +0 -19
- data/views/ui_patterns/forms/text_input.erb +0 -10
@@ -18,20 +18,14 @@
|
|
18
18
|
|
19
19
|
// Want web fonts? We got those too.
|
20
20
|
// ------------------------------------------------------------------------------
|
21
|
-
@import "web_fonts";
|
21
|
+
@import "typography/web_fonts"; // edit this to add web font libraries
|
22
22
|
|
23
23
|
|
24
24
|
|
25
25
|
// Following sequence will load the necessary Stipe libraries
|
26
26
|
// ------------------------------------------------------------------------------
|
27
|
-
@import "
|
28
|
-
@import "stipe/
|
29
|
-
@import "stipe/typography";
|
30
|
-
@import "stipe/grid";
|
31
|
-
@import "stipe/color";
|
32
|
-
@import "stipe/gradients";
|
33
|
-
@import "stipe/forms";
|
34
|
-
@import "stipe/buttons";
|
27
|
+
@import "compass/css3"; // Including the Compass CSS3 mixins
|
28
|
+
@import "stipe/manifest";
|
35
29
|
@import "color/extends";
|
36
30
|
|
37
31
|
|
@@ -42,4 +36,6 @@
|
|
42
36
|
@import "forms";
|
43
37
|
@import "buttons";
|
44
38
|
@import "design";
|
45
|
-
@import "
|
39
|
+
@import "ui_patterns/example_pattern/example_pattern";
|
40
|
+
@import "modules/example_module/example_module";
|
41
|
+
@import "layouts/example_layout";
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
// Toadstool styleguide UI manifest
|
7
7
|
// ------------------------------------------------------------------------------
|
8
|
-
@import "
|
8
|
+
@import "toadstool-styleguide"; // do not delete
|
9
9
|
@import "color/extends";
|
10
10
|
|
11
11
|
// Toadstool styleguide UI custom styles
|
@@ -0,0 +1,13 @@
|
|
1
|
+
// Use this Sass file to create custom typography silent placeholder extends per your project
|
2
|
+
// -----------------------------------------------------------------------
|
3
|
+
|
4
|
+
// Example: Uncomment this rule to see the effect on the style guide
|
5
|
+
// -----------------------------------------------------------------------
|
6
|
+
// %headings_1 {
|
7
|
+
// text-decoration: underline;
|
8
|
+
// text-shadow: 0 0 20px $shadow_color;
|
9
|
+
// &:first-letter {
|
10
|
+
// color: orange;
|
11
|
+
// font-size: 3em;
|
12
|
+
// }
|
13
|
+
// }
|
@@ -1,13 +1,10 @@
|
|
1
|
-
|
2
|
-
// -----------------------------------------------------------
|
3
1
|
@import "stipe/typography/mixins"; // Do not edit, needed to pull in necessary mixin
|
4
2
|
$webfont_directory: "/fonts/" !default; // edit this directory in the '_config.scss' file if needed.
|
5
|
-
|
3
|
+
// -----------------------------------------------------------
|
6
4
|
|
7
5
|
|
8
6
|
// Pre-loaded web fonts for your use, enjoy!
|
9
|
-
// Fonts needed to be loaded in path specified above
|
10
|
-
// in relation to the rendered CSS file
|
7
|
+
// Fonts needed to be loaded in path specified above in relation to the rendered CSS file
|
11
8
|
// -----------------------------------------------------------
|
12
9
|
// To activate 'zocial' uncomment both lines
|
13
10
|
// @import "stipe/typography/web_fonts/zocial";
|
@@ -0,0 +1,94 @@
|
|
1
|
+
# Those little ditties that Sinatra needs to make the magic happen
|
2
|
+
# -----------------------------------------------------------------------
|
3
|
+
require 'rubygems'
|
4
|
+
require 'net/http'
|
5
|
+
|
6
|
+
# If you're using bundler, you will need to add this
|
7
|
+
require 'bundler/setup'
|
8
|
+
|
9
|
+
require 'sinatra'
|
10
|
+
require 'sinatra/partial'
|
11
|
+
|
12
|
+
set :partial_template_engine, :erb
|
13
|
+
|
14
|
+
|
15
|
+
# Helpers to add a new horn section to the band
|
16
|
+
# -----------------------------------------------------------------------
|
17
|
+
helpers do
|
18
|
+
include ERB::Util
|
19
|
+
alias_method :code, :html_escape
|
20
|
+
|
21
|
+
# write better links
|
22
|
+
def link_to_unless_current(location, text )
|
23
|
+
if request.path_info == location
|
24
|
+
text
|
25
|
+
else
|
26
|
+
link_to location, text
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
def link_to(url,text=url,opts={})
|
31
|
+
attributes = ""
|
32
|
+
opts.each { |key,value| attributes << key.to_s << "=\"" << value << "\" "}
|
33
|
+
"<a href=\"#{url}\" #{attributes}>#{text}</a>"
|
34
|
+
end
|
35
|
+
|
36
|
+
|
37
|
+
# html_example is a convenienence method that wraps ERB partial @file in our standard example markup
|
38
|
+
# with the rendered HTML in an <article> and the code in a collapsible div below.
|
39
|
+
#
|
40
|
+
# Use in a view as
|
41
|
+
# <%= html_example 'ui_patterns/typography/_body_copy' %>
|
42
|
+
#
|
43
|
+
# @param file path to an ERB partial, relative to /views and omitting the extension,
|
44
|
+
# e.g.: 'ui_patterns/typography/_body_copy'
|
45
|
+
|
46
|
+
def html_example(file)
|
47
|
+
file = File.new(File.join('views', file + '.erb'))
|
48
|
+
|
49
|
+
partial :'shared/_html_example', :locals => { :content => file.read(), :mtime => file.mtime, :path => file.path }
|
50
|
+
end
|
51
|
+
|
52
|
+
|
53
|
+
# sass_example is the same as html_example, but for Sass partials.
|
54
|
+
#
|
55
|
+
# Use in a view as
|
56
|
+
# <%= sass_example 'forms/_extends' %>
|
57
|
+
#
|
58
|
+
# @param file path to an SCSS partial, relative to /sass and omitting the extension,
|
59
|
+
# e.g.: 'forms/_extends'
|
60
|
+
|
61
|
+
def sass_example(file)
|
62
|
+
file = File.new(File.join('sass', file + '.scss'))
|
63
|
+
|
64
|
+
code_toggle file.read(), file.path, file.mtime
|
65
|
+
end
|
66
|
+
|
67
|
+
|
68
|
+
# code_toggle is a internal convenience method that wraps our collapsible example code div.
|
69
|
+
# You shouldn't need to use it directly.
|
70
|
+
#
|
71
|
+
# @param content string of HTML or SCSS content
|
72
|
+
# @param path path to the file being displayed
|
73
|
+
# @param mtime mtime of the file being displayed
|
74
|
+
|
75
|
+
def code_toggle(content, path, mtime)
|
76
|
+
partial :'shared/_code_toggle', :locals => { :content => content, :mtime => mtime, :path => path }
|
77
|
+
end
|
78
|
+
|
79
|
+
end
|
80
|
+
|
81
|
+
|
82
|
+
# Without this, there is no app. No really, there is nothing.
|
83
|
+
# -----------------------------------------------------------------------
|
84
|
+
get '/' do
|
85
|
+
erb :typography
|
86
|
+
end
|
87
|
+
|
88
|
+
get %r{([\w\./_-]+)} do
|
89
|
+
if File.exists?('views' + params[:captures].first.gsub(/.(\/)$/, '') + '/index.erb')
|
90
|
+
erb :"#{params[:captures].first.gsub(/.(\/)$/, '')}/index"
|
91
|
+
else
|
92
|
+
erb :"#{params[:captures].first}"
|
93
|
+
end
|
94
|
+
end
|
@@ -0,0 +1,371 @@
|
|
1
|
+
<header class="toadstool_header">
|
2
|
+
<h1>colors</h1>
|
3
|
+
</header>
|
4
|
+
|
5
|
+
<article class="colorcode">
|
6
|
+
<header class="toadstool_subheader">
|
7
|
+
<h2>Typography</h2>
|
8
|
+
</header>
|
9
|
+
<div class="primary_header_color">
|
10
|
+
<p>$primary_header_color</p>
|
11
|
+
</div>
|
12
|
+
<div class="primary_text">
|
13
|
+
<p>$primary_text</p>
|
14
|
+
</div>
|
15
|
+
<div class="secondary_text">
|
16
|
+
<p>$secondary_text</p>
|
17
|
+
</div>
|
18
|
+
<div class="href_color">
|
19
|
+
<p>$href_color</p>
|
20
|
+
</div>
|
21
|
+
</article>
|
22
|
+
|
23
|
+
|
24
|
+
<article class="colorcode">
|
25
|
+
<header class="toadstool_subheader">
|
26
|
+
<h2>Borders, rules and shadows</h2>
|
27
|
+
</header>
|
28
|
+
<div class="shadow_color">
|
29
|
+
<p>$shadow_color</p>
|
30
|
+
</div>
|
31
|
+
<div class="border_color">
|
32
|
+
<p>$border_color</p>
|
33
|
+
</div>
|
34
|
+
<div class="standard_hr_color">
|
35
|
+
<p>$standard_hr_color</p>
|
36
|
+
</div>
|
37
|
+
<div class="standard_border_color">
|
38
|
+
<p>$standard_border_color</p>
|
39
|
+
</div>
|
40
|
+
</article>
|
41
|
+
|
42
|
+
<article class="colorcode">
|
43
|
+
<header class="toadstool_subheader">
|
44
|
+
<h2>Form elements</h2>
|
45
|
+
</header>
|
46
|
+
|
47
|
+
<div class="alert_background_color">
|
48
|
+
<p>$alert_background_color</p>
|
49
|
+
</div>
|
50
|
+
<div class="input_disabled">
|
51
|
+
<p>$input_disabled</p>
|
52
|
+
</div>
|
53
|
+
<div class="input_disabled_bkg">
|
54
|
+
<p>$input_disabled_bkg</p>
|
55
|
+
</div>
|
56
|
+
<div class="input_disabled_border">
|
57
|
+
<p>$input_disabled_border</p>
|
58
|
+
</div>
|
59
|
+
<div class="input_disabled_text">
|
60
|
+
<p>$input_disabled_text</p>
|
61
|
+
</div>
|
62
|
+
<div class="form_field_background_color">
|
63
|
+
<p>$form_field_background_color</p>
|
64
|
+
</div>
|
65
|
+
<div class="form_field_focus_color">
|
66
|
+
<p>$form_field_focus_color</p>
|
67
|
+
</div>
|
68
|
+
<div class="form_field_fail_bkg">
|
69
|
+
<p>$form_field_fail_bkg</p>
|
70
|
+
</div>
|
71
|
+
<div class="form_field_border">
|
72
|
+
<p>$form_field_border</p>
|
73
|
+
</div>
|
74
|
+
<div class="form_field_border_fail">
|
75
|
+
<p>$form_field_border_fail</p>
|
76
|
+
</div>
|
77
|
+
<div class="form_field_focus_border_color">
|
78
|
+
<p>$form_field_focus_border_color</p>
|
79
|
+
</div>
|
80
|
+
<div class="form_field_text_fail">
|
81
|
+
<p>$form_field_text_fail</p>
|
82
|
+
</div>
|
83
|
+
<div class="form_label_color">
|
84
|
+
<p>$form_label_color</p>
|
85
|
+
</div>
|
86
|
+
<div class="optional_field_text_color">
|
87
|
+
<p>$optional_field_text_color</p>
|
88
|
+
</div>
|
89
|
+
<div class="instructional_text">
|
90
|
+
<p>$instructional_text</p>
|
91
|
+
</div>
|
92
|
+
<div class="placeholder_text">
|
93
|
+
<p>$placeholder_text</p>
|
94
|
+
</div>
|
95
|
+
<div class="inline_alert_bkg_color">
|
96
|
+
<p>$inline_alert_bkg_color</p>
|
97
|
+
</div>
|
98
|
+
<div class="inline_alert_text_color">
|
99
|
+
<p>$inline_alert_text_color</p>
|
100
|
+
</div>
|
101
|
+
</article>
|
102
|
+
|
103
|
+
<article class="colorcode">
|
104
|
+
<header class="toadstool_subheader">
|
105
|
+
<h2>Buttons</h2>
|
106
|
+
</header>
|
107
|
+
<div class="button_color">
|
108
|
+
<p>$button_color</p>
|
109
|
+
</div>
|
110
|
+
<!-- <div class="primary_button_border_color">
|
111
|
+
<p>$primary_button_border_color</p>
|
112
|
+
</div> -->
|
113
|
+
<div class="secondary_button_border_color">
|
114
|
+
<p>$secondary_button_border_color</p>
|
115
|
+
</div>
|
116
|
+
<div class="button_text">
|
117
|
+
<p>$button_text</p>
|
118
|
+
</div>
|
119
|
+
</article>
|
120
|
+
|
121
|
+
<article class="colorcode">
|
122
|
+
<header class="toadstool_subheader">
|
123
|
+
<h2>HTML5 colors<a href="#">(view all)</a></h2>
|
124
|
+
</header>
|
125
|
+
<div class="webkit_tap_hightlight">
|
126
|
+
<p>$webkit_tap_hightlight</p>
|
127
|
+
</div>
|
128
|
+
<section class="hidden">
|
129
|
+
<div class="ins_color">
|
130
|
+
<p>$ins_color</p>
|
131
|
+
</div>
|
132
|
+
<div class="selection_color">
|
133
|
+
<p>$selection_color</p>
|
134
|
+
</div>
|
135
|
+
<div class="selection_text_color">
|
136
|
+
<p>$selection_text_color</p>
|
137
|
+
</div>
|
138
|
+
<div class="mark_color">
|
139
|
+
<p>$mark_color</p>
|
140
|
+
</div>
|
141
|
+
</section>
|
142
|
+
</article>
|
143
|
+
|
144
|
+
|
145
|
+
<article class="colorcode">
|
146
|
+
<header class="toadstool_subheader">
|
147
|
+
<h2>grayscale<a href="#">(view all)</a></h2>
|
148
|
+
</header>
|
149
|
+
<div class="alpha_gray">
|
150
|
+
<p>$alpha_gray</p>
|
151
|
+
</div>
|
152
|
+
<section class="hidden">
|
153
|
+
<div class="bravo_gray">
|
154
|
+
<p>$bravo_gray</p>
|
155
|
+
</div>
|
156
|
+
<div class="charlie_gray">
|
157
|
+
<p>$charlie_gray</p>
|
158
|
+
</div>
|
159
|
+
<div class="delta_gray">
|
160
|
+
<p>$delta_gray</p>
|
161
|
+
</div>
|
162
|
+
<div class="echo_gray">
|
163
|
+
<p>$echo_gray</p>
|
164
|
+
</div>
|
165
|
+
<div class="fox_gray">
|
166
|
+
<p>$fox_gray</p>
|
167
|
+
</div>
|
168
|
+
<div class="golf_gray">
|
169
|
+
<p>$golf_gray</p>
|
170
|
+
</div>
|
171
|
+
<div class="hotel_gray">
|
172
|
+
<p>$hotel_gray</p>
|
173
|
+
</div>
|
174
|
+
<div class="india_gray">
|
175
|
+
<p>$india_gray</p>
|
176
|
+
</div>
|
177
|
+
<div class="white">
|
178
|
+
<p>$white</p>
|
179
|
+
</div>
|
180
|
+
</section>
|
181
|
+
</article>
|
182
|
+
|
183
|
+
<article class="colorcode">
|
184
|
+
<header class="toadstool_subheader">
|
185
|
+
<h2>alpha color scale<a href="#">(view all)</a></h2>
|
186
|
+
</header>
|
187
|
+
<div class="alpha_color">
|
188
|
+
<p>$alpha_color</p>
|
189
|
+
</div>
|
190
|
+
<section class="hidden">
|
191
|
+
<div class="alpha_color_bravo">
|
192
|
+
<p>$alpha_color_bravo</p>
|
193
|
+
</div>
|
194
|
+
<div class="alpha_color_charlie">
|
195
|
+
<p>$alpha_color_charlie</p>
|
196
|
+
</div>
|
197
|
+
<div class="alpha_color_delta">
|
198
|
+
<p>$alpha_color_delta</p>
|
199
|
+
</div>
|
200
|
+
<div class="alpha_color_echo">
|
201
|
+
<p>$alpha_color_echo</p>
|
202
|
+
</div>
|
203
|
+
<div class="alpha_color_fox">
|
204
|
+
<p>$alpha_color_fox</p>
|
205
|
+
</div>
|
206
|
+
<div class="alpha_color_golf">
|
207
|
+
<p>$alpha_color_golf</p>
|
208
|
+
</div>
|
209
|
+
<div class="alpha_color_hotel">
|
210
|
+
<p>$alpha_color_hotel</p>
|
211
|
+
</div>
|
212
|
+
<div class="alpha_color_india">
|
213
|
+
<p>$alpha_color_india</p>
|
214
|
+
</div>
|
215
|
+
<div class="alpha_color_juliet">
|
216
|
+
<p>$alpha_color_juliet</p>
|
217
|
+
</div>
|
218
|
+
</section>
|
219
|
+
</article>
|
220
|
+
|
221
|
+
<article class="colorcode">
|
222
|
+
<header class="toadstool_subheader">
|
223
|
+
<h2>bravo color scale<a href="#">(view all)</a></h2>
|
224
|
+
</header>
|
225
|
+
<div class="bravo_color">
|
226
|
+
<p>$bravo_color</p>
|
227
|
+
</div>
|
228
|
+
<section class="hidden">
|
229
|
+
<div class="bravo_color_bravo">
|
230
|
+
<p>$bravo_color_bravo</p>
|
231
|
+
</div>
|
232
|
+
<div class="bravo_color_charlie">
|
233
|
+
<p>$bravo_color_charlie</p>
|
234
|
+
</div>
|
235
|
+
<div class="bravo_color_delta">
|
236
|
+
<p>$bravo_color_delta</p>
|
237
|
+
</div>
|
238
|
+
<div class="bravo_color_echo">
|
239
|
+
<p>$bravo_color_echo</p>
|
240
|
+
</div>
|
241
|
+
<div class="bravo_color_fox">
|
242
|
+
<p>$bravo_color_fox</p>
|
243
|
+
</div>
|
244
|
+
<div class="bravo_color_golf">
|
245
|
+
<p>$bravo_color_golf</p>
|
246
|
+
</div>
|
247
|
+
<div class="bravo_color_hotel">
|
248
|
+
<p>$bravo_color_hotel</p>
|
249
|
+
</div>
|
250
|
+
<div class="bravo_color_india">
|
251
|
+
<p>$bravo_color_india</p>
|
252
|
+
</div>
|
253
|
+
<div class="bravo_color_juliet">
|
254
|
+
<p>$bravo_color_juliet</p>
|
255
|
+
</div>
|
256
|
+
</section>
|
257
|
+
</article>
|
258
|
+
|
259
|
+
<article class="colorcode">
|
260
|
+
<header class="toadstool_subheader">
|
261
|
+
<h2>charlie color scale<a href="#">(view all)</a></h2>
|
262
|
+
</header>
|
263
|
+
<div class="charlie_color">
|
264
|
+
<p>$charlie_color</p>
|
265
|
+
</div>
|
266
|
+
<section class="hidden">
|
267
|
+
<div class="charlie_color_bravo">
|
268
|
+
<p>$charlie_color_bravo</p>
|
269
|
+
</div>
|
270
|
+
<div class="charlie_color_charlie">
|
271
|
+
<p>$charlie_color_charlie</p>
|
272
|
+
</div>
|
273
|
+
<div class="charlie_color_delta">
|
274
|
+
<p>$charlie_color_delta</p>
|
275
|
+
</div>
|
276
|
+
<div class="charlie_color_echo">
|
277
|
+
<p>$charlie_color_echo</p>
|
278
|
+
</div>
|
279
|
+
<div class="charlie_color_fox">
|
280
|
+
<p>$charlie_color_fox</p>
|
281
|
+
</div>
|
282
|
+
<div class="charlie_color_golf">
|
283
|
+
<p>$charlie_color_golf</p>
|
284
|
+
</div>
|
285
|
+
<div class="charlie_color_hotel">
|
286
|
+
<p>$charlie_color_hotel</p>
|
287
|
+
</div>
|
288
|
+
<div class="charlie_color_india">
|
289
|
+
<p>$charlie_color_india</p>
|
290
|
+
</div>
|
291
|
+
<div class="charlie_color_juliet">
|
292
|
+
<p>$charlie_color_juliet</p>
|
293
|
+
</div>
|
294
|
+
</section>
|
295
|
+
</article>
|
296
|
+
|
297
|
+
<article class="colorcode">
|
298
|
+
<header class="toadstool_subheader">
|
299
|
+
<h2>delta color scale<a href="#">(view all)</a></h2>
|
300
|
+
</header>
|
301
|
+
<div class="delta_color">
|
302
|
+
<p>$delta_color</p>
|
303
|
+
</div>
|
304
|
+
<section class="hidden">
|
305
|
+
<div class="delta_color_bravo">
|
306
|
+
<p>$delta_color_bravo</p>
|
307
|
+
</div>
|
308
|
+
<div class="delta_color_charlie">
|
309
|
+
<p>$delta_color_charlie</p>
|
310
|
+
</div>
|
311
|
+
<div class="delta_color_delta">
|
312
|
+
<p>$delta_color_delta</p>
|
313
|
+
</div>
|
314
|
+
<div class="delta_color_echo">
|
315
|
+
<p>$delta_color_echo</p>
|
316
|
+
</div>
|
317
|
+
<div class="delta_color_fox">
|
318
|
+
<p>$delta_color_fox</p>
|
319
|
+
</div>
|
320
|
+
<div class="delta_color_golf">
|
321
|
+
<p>$delta_color_golf</p>
|
322
|
+
</div>
|
323
|
+
<div class="delta_color_hotel">
|
324
|
+
<p>$delta_color_hotel</p>
|
325
|
+
</div>
|
326
|
+
<div class="delta_color_india">
|
327
|
+
<p>$delta_color_india</p>
|
328
|
+
</div>
|
329
|
+
<div class="delta_color_juliet">
|
330
|
+
<p>$delta_color_juliet</p>
|
331
|
+
</div>
|
332
|
+
</section>
|
333
|
+
</article>
|
334
|
+
|
335
|
+
<article class="colorcode">
|
336
|
+
<header class="toadstool_subheader">
|
337
|
+
<h2>echo color scale<a href="#">(view all)</a></h2>
|
338
|
+
</header>
|
339
|
+
<div class="echo_color">
|
340
|
+
<p>$echo_color</p>
|
341
|
+
</div>
|
342
|
+
<section class="hidden">
|
343
|
+
<div class="echo_color_bravo">
|
344
|
+
<p>$echo_color_bravo</p>
|
345
|
+
</div>
|
346
|
+
<div class="echo_color_charlie">
|
347
|
+
<p>$echo_color_charlie</p>
|
348
|
+
</div>
|
349
|
+
<div class="echo_color_delta">
|
350
|
+
<p>$echo_color_delta</p>
|
351
|
+
</div>
|
352
|
+
<div class="echo_color_echo">
|
353
|
+
<p>$echo_color_echo</p>
|
354
|
+
</div>
|
355
|
+
<div class="echo_color_fox">
|
356
|
+
<p>$echo_color_fox</p>
|
357
|
+
</div>
|
358
|
+
<div class="echo_color_golf">
|
359
|
+
<p>$echo_color_golf</p>
|
360
|
+
</div>
|
361
|
+
<div class="echo_color_hotel">
|
362
|
+
<p>$echo_color_hotel</p>
|
363
|
+
</div>
|
364
|
+
<div class="echo_color_india">
|
365
|
+
<p>$echo_color_india</p>
|
366
|
+
</div>
|
367
|
+
<div class="echo_color_juliet">
|
368
|
+
<p>$echo_color_juliet</p>
|
369
|
+
</div>
|
370
|
+
</section>
|
371
|
+
</article>
|