Source: dist/css/acc_uc.css, line 9909
8 Decorator
Colors, textures, logos and other design flourishes.
Source: dist/css/acc_uc.css, line 9909
Colors, textures, logos and other design flourishes.
Source: dist/css/acc_uc.css, line 10021
Background of containers can be easily maniputlated with textures, colors, and shadows.
Source: dist/css/acc_uc.css, line 10031
Background colors can be easily change with bg_color-name
background using primary color
background using secondary color
background using shade color
background using alert color
background using warning color
background using success color
background using info color
background using highlight color
<div class="[modifier class] p_3 c_white">Background Color of [modifier class]</div>
Source: dist/css/acc_uc.css, line 10056
Classes | Effect |
---|---|
.bg_(color)-0, .bg_(color) | pure color |
.bg_(color)-1 | color with 15% white mixed in |
.bg_(color)-2 | color with 37% white mixed in |
.bg_(color)-3 | color with 60% white mixed in |
.bg_(color)-4 | color with 78% white mixed in |
.bg_(color)-5 | color with 90% white mixed in |
.bg_(color)-n1 | color with 10% black mixed in |
.bg_(color)-n2 | color with 25% black mixed in |
.bg_(color)-n3 | color with 45% black mixed in |
.bg_(color)-n4 | color with 58% black mixed in |
.bg_(color)-n5 | color with 75% black mixed in |
background using primary color
background using secondary color
background using shade color
background using alert color
background using warning color
background using success color
background using info color
background using highlight color
<div class="bg_white flex_auto text_center p_2 p-y_5 ">white</div>
<div class="[modifier class]-5 flex_auto text_center p_2 p-y_5">5</div>
<div class="[modifier class]-4 flex_auto text_center p_2 p-y_5">4</div>
<div class="[modifier class]-3 flex_auto text_center p_2 p-y_5">3</div>
<div class="[modifier class]-2 flex_auto text_center p_2 p-y_5">2</div>
<div class="[modifier class]-1 flex_auto text_center c_white p_2 p-y_5">1</div>
<div class="[modifier class]-0 flex_auto text_center c_white p_2 p-y_5">0</div>
<div class="[modifier class]-n1 flex_auto text_center c_white p_2 p-y_5">n1</div>
<div class="[modifier class]-n2 flex_auto text_center c_white p_2 p-y_5">n2</div>
<div class="[modifier class]-n3 flex_auto text_center c_white p_2 p-y_5">n3</div>
<div class="[modifier class]-n4 flex_auto text_center c_white p_2 p-y_5">n4</div>
<div class="[modifier class]-n5 flex_auto text_center c_white p_2 p-y_5">n5</div>
<div class="bg_black flex_auto text_center c_white p_2 p-y_5">black</div>
Source: dist/css/acc_uc.css, line 10705
Background colors of white and black can be shifted by appending a modifier bg_{{color-name}}-{{0 to 9}} to shift its transparency
background color of black modified with alphas
background color of white modified with alphas
<div class="bg_[modifier class]-0 flex_auto text_center c_white p_2 p-y_5">[modifier class]-0</div>
<div class="bg_[modifier class]-1 flex_auto text_center c_white p_2 p-y_5">[modifier class]-1</div>
<div class="bg_[modifier class]-2 flex_auto text_center c_white p_2 p-y_5">[modifier class]-2</div>
<div class="bg_[modifier class]-3 flex_auto text_center c_white p_2 p-y_5">[modifier class]-3</div>
<div class="bg_[modifier class]-4 flex_auto text_center c_white p_2 p-y_5">[modifier class]-4</div>
<div class="bg_[modifier class]-5 flex_auto text_center c_white p_2 p-y_5">[modifier class]-5</div>
<div class="bg_[modifier class]-6 flex_auto text_center c_white p_2 p-y_5">[modifier class]-6</div>
<div class="bg_[modifier class]-7 flex_auto text_center c_white p_2 p-y_5">[modifier class]-7</div>
<div class="bg_[modifier class]-8 flex_auto text_center c_white p_2 p-y_5">[modifier class]-8</div>
<div class="bg_[modifier class]-9 flex_auto text_center c_white p_2 p-y_5">[modifier class]-9</div>
<div class="bg_[modifier class] flex_auto text_center c_white p_2 p-y_5">[modifier class]</div>
Source: dist/css/acc_uc.css, line 10733
For many images you will need top place background images in to a cardnial location.
cardnial left
cardnial top
cardnial right
cardnial bottom
cardnial center center
<div class="[modifier class] seal_tiny" style="height:200px;max-width: unset;background-size: 100px;"><span class="alt">[modifier class]</span></div>
Source: dist/css/acc_uc.css, line 10817
repeating a background image is easy.
.bg_norepeat - norepeat .bg_repeat - repeat .bg_repeat-x - repoeat-x .bg_repeat-y - repeat-y .bg_repeat-space - repeat-space
<div class=" seal_tiny bg_auto" style="height:200px;max-width: unset;background-size: 100px;"><span class="alt"></span></div>
Source: dist/css/acc_uc.css, line 10773
For many images you will need top place background images in to a cardnial location.
removes any css background size
auto
cover
contain
<div class="[modifier class] seal_tiny" style="height:200px;max-width: unset;"><span class="alt">[modifier class]</span></div>
Source: dist/css/acc_uc.css, line 10956
Simple Gradients that are either linear or radial. These gradients can be modified by passing in the css properties to change the start and end color and the direction the gradient is rendered. style="--start-color:hexcolor;--end-color:hexcolor;--origin:top right"
css property | definition | acceptable options |
---|---|---|
--start-color | the starting color of the gradient or center color for radial | proper formatted color: hex, hsl, hsla, rgb, rgba |
--end-color | the ending color or the outside color when radial | proper formatted color: hex, hsl, hsla, rgb, rgba |
--origin | point in the container where the gradients starts | these words depend on the type of gradient |
Source: dist/css/acc_uc.css, line 10983
The default gradient is the ACC Blue to the Primary Color of the Brand. Pass in css properties to manipulate the colors you want to use. linear gradient css documentation
Source: dist/css/acc_uc.css, line 10999
The default gradient is the ACC Blue to the Primary Color of the Brand. Pass in css properties to manipulate the colors you want to use. radial gradient css documentation
Source: dist/css/acc_uc.css, line 10859
All textures in the Arches design are a subtle variation of transparent. Allowing for colors to bleed through from behind. Different textures have intentions or are reserved for certain usagaes. It is easy to apply textures using the texture utlities.
Light textures is reserved for the base of a page where it can gve a soft area for text or cards to live on top of.
medium texture are used for area that are hidden away. Collapsable navs, areas, or sidebars ususaly use the medium texture.
Dust is the most transparent texture allowing for the color of the background to show through the most. This is used for the painted tops of cards, or score bars.
This texture predominatly used on the footer. Its rich black will alway requrie reversed text and buttons to be readable.
A mostly transparent cross texture used for alternating rows of content when a little extra texture is needed.
This texture is used to paint disabled buttons and ui items giving it a greyed and X'ed out appearand.
<div class="[modifier class] p_5 br_black-8 br_1 br_solid text_center">[modifier class]</div>
Source: dist/css/acc_uc.css, line 10907
All textures are slightly transparent. You can acheive different effects with using the combo of textures and background colors.
textures are slightly transparent so they can be colored with background-color classess
textures are slightly transparent so they can be colored with background-color classess
textures are slightly transparent so they can be colored with background-color classess
textures are slightly transparent so they can be colored with background-color classess
textures are slightly transparent so they can be colored with background-color classess
textures are slightly transparent so they can be colored with background-color classess
textures are slightly transparent so they can be colored with background-color classess
textures are slightly transparent so they can be colored with background-color classess
textures are slightly transparent so they can be colored with background-color classess
textures are slightly transparent so they can be colored with background-color classess
<div class="[modifier class] p_5 br_black-8 br_1 br_solid text_center">[modifier class]</div>
Source: dist/css/acc_uc.css, line 10929
All textures are slightly transparent. You can further shade the background colors to achieve even more flexablity.
textures are slightly transparent so they can be colored with background-color classess
textures are slightly transparent so they can be colored with background-color classess
textures are slightly transparent so they can be colored with background-color classess
textures are slightly transparent so they can be colored with background-color classess
textures are slightly transparent so they can be colored with background-color classess
textures are slightly transparent so they can be colored with background-color classess
textures are slightly transparent so they can be colored with background-color classess
textures are slightly transparent so they can be colored with background-color classess
textures are slightly transparent so they can be colored with background-color classess
textures are slightly transparent so they can be colored with background-color classess
<div class="flex">
<div class="[modifier class]-n3 p_3 flex_auto text_center c_white">n3</div>
<div class="[modifier class]-n1 p_3 flex_auto text_center c_white">n1</div>
<div class="[modifier class]-1 p_3 flex_auto text_center c_white">1</div>
<div class="[modifier class]-3 p_3 flex_auto text_center c_white">3</div>
</div>
Source: dist/css/acc_uc.css, line 16268
Color blending modes for text on backgrounds.
.font-blend_normal - blend text with a normal .font-blend_multiply - blend text with a multiply .font-blend_screen - blend text with a screen .font-blend_overlay - blend text with a overlay .font-blend_darken - blend text with a darken .font-blend_lighten - blend text with a lighten .font-blend_color - blend text with a color .font-blend_color - blend text with a color .font-blend_hard - blend text with a hard .font-blend_soft - blend text with a soft .font-blend_difference - blend text with a difference .font-blend_exclusion - blend text with a exclusion .font-blend_hue - blend text with a hue .font-blend_saturation - blend text with a saturation .font-blend_color - blend text with a color .font-blend_luminosity - blend text with a luminosity .font-blend_initial - blend text with a initial .font-blend_inherit - blend text with a inherit .font-blend_unset - blend text with a unset
Source: dist/css/acc_uc.css, line 16301
Background Image blending modes on top of other layers like other images, text, and svg.
Source: dist/css/acc_uc.css, line 9918
Shadows can be easily added to container .shadow_{{modifier_class}}. You can add simple or rich shadows depending on the level of depth and details of the shadow needed for the UI.
inset shadow
inset shadow
inset shadow
inset shadow
inset shadow
no shadow
box shadow
box shadow
box shadow
box shadow
box shadow
Rich Shadow bevel-light
Rich Shadow bevel-bold
Rich Shadow overlap-light
Rich Shadow overlap-bold
Rich Shadow emboss-light
Rich Shadow emboss-bold
<div class="[modifier class] bg-blend_overlay bg_primary-5 br_round lh_1 m_0 m_5:md p_4 p_5 text_center texture_light flex flex_column"><span class="flex_auto self_center">[modifier class]</span></div>
Source: dist/css/acc_uc.css, line 11189
Borders a complex utility that demands a combo UCs to acheive their effect. The three UCs that must be used in combo are style
, color
, and width
. To make an object with single black pixel border that is solid you would have to add '.br_solid.br_1.br_black'
Source: dist/css/acc_uc.css, line 11264
Alter the border color of and object by adding the border color utitlity class.
border color
border color
border color
border color
border color
border color
<div class="[modifier class] p_3 br_solid bw_3">[modifier class] border</div>
Source: dist/css/acc_uc.css, line 11283
Border black has attached alpha modifiers to allow for greater flexibility
border black with alpha of 100%
border black with alpha of 2%
border black with alpha of 10%
border black with alpha of 20%
border black with alpha of 30%
border black with alpha of 40%
border black with alpha of 50%
border black with alpha of 60%
border black with alpha of 70%
border black with alpha of 80%
border black with alpha of 90%
<div class="[modifier class] p_3 br_solid br_5 bg_primary-1 white">[modifier class] border</div>
Source: dist/css/acc_uc.css, line 11690
Border colors can also have the colors modified by shifting to white or black
border color primary
border color mixed with white
border color mixed with white
border color mixed with white
border color mixed with white
border color mixed with white
border color mixed with black
border color mixed with black
border color mixed with black
border color mixed with black
border color mixed with black
<div class="[modifier class] p_3 br_solid br_5 bg_shade c_white">[modifier class] border</div>
Source: dist/css/acc_uc.css, line 11306
Border white has attached alpha modifiers to allow for greater flexablity
border white with alpha of 100%
border white with alpha of 2%
border white with alpha of 90%
border white with alpha of 80%
border white with alpha of 70%
border white with alpha of 60%
border white with alpha of 50%
border white with alpha of 40%
border white with alpha of 30%
border white with alpha of 20%
border white with alpha of 10%
<div class="[modifier class] p_3 br_solid br_5 bg_primary-1 c_white">[modifier class] border</div>
Source: dist/css/acc_uc.css, line 11437
Apply border radius to objects by adding full or partial classes for border-radius
All square
All with $global-radus
All corners with 99(px)
All corders at 100%
top left square
top left with $global-radus
top left corners with 99(px)
top left corders at 100%
bottom left square
bottom left with $global-radus
bottom left corners with 99(px)
bottom left corders at 100%
<div class="[modifier class] p_3 br_black br_solid br_2">[modifier class] border</div>
Source: dist/css/acc_uc.css, line 11200
Depends on base border module in _borders.css
makes a border none
makes a border dotted
makes a border dashed
makes a border solid
<div class="[modifier class] br_black bw_1 p_3">[modifier class] border</div>
Source: dist/css/acc_uc.css, line 12198
Manipulation of borders with these classes either all border or with single borders
all border with no border
all borders with 1px
all borders with .125rem
all borders with .25rem
all borders with .5rem
all borders with rem
left border with no border
left borders with 1px
left borders with .125rem
left borders with .25rem
left borders with .5rem
left borders with rem
<div class="[modifier class] p_3 br_solid br_black c_black">[modifier class] border</div>
Source: dist/css/acc_uc.css, line 12385
A subtle set of UCs that control opacity can alter the objects level of focus.
Source: dist/css/acc_uc.css, line 12396
Set the Opacity of an object.
class | css property | value |
---|---|---|
.opacity_0 | opacity : | 0 |
.opacity__01 | opacity : | 0.005 |
.opacity__05 | opacity : | 0.0075 |
.opacity_1 | opacity : | 0.025 |
.opacity_2 | opacity : | 0.1 |
.opacity_3 | opacity : | 0.25 |
.opacity_4 | opacity : | 0.38 |
.opacity_5 | opacity : | 0.5 |
.opacity_6 | opacity : | 0.62 |
.opacity_7 | opacity : | 0.75 |
.opacity_8 | opacity : | 0.9 |
.opacity_9 | opacity : | 0.975 |
.opacity_none | opacity : | 1 |
set opacity: 0.1
set opacity: 0.62
set opacity: 0.9
set opacity: 1
<div class="[modifier class] br_1 br_solid br_white p_2 bg_warning c_white">[modifier class]</div>