Skip to content

Commit

Permalink
added a new theme
Browse files Browse the repository at this point in the history
  • Loading branch information
UnderlineWords committed May 18, 2023
1 parent ae4e3ba commit 99cffaf
Show file tree
Hide file tree
Showing 2 changed files with 101 additions and 0 deletions.
91 changes: 91 additions & 0 deletions elegance/map.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
/////////////////////////////////////////////////////////
/// PUNICA CSS > THEMES > ELEGANCE : Theme map
/////////////////////////////////////////////////////////
///
/// Read more about customization;
/// @link http://www.punicacss.com/themes/elegance
///
$punica-themes: (
elegance: (
'name' : 'Elegance',
'type' : 'light', // light or dark (required*),
'google-font': (
'name' : 'Fira+Sans', // or Source+Sans+Pro etc
'weights' : '300;400;500',
),
'typography': (
'font-family' : 'Fira Sans',
'font-size' : 13px,
'font-weight' : 300,
'line-height' : 1.9,
'header-weight' : 400,
),
'color': (
'text' : #303437,
'background' : #f4f8fb,
'primary' : #5665A1,
'success' : #52b0b7,
'warning' : #d58c72,
'error' : #d5626a,
'active' : #d7e4ec,
'negative' : white,
'grey' : #89959d,
'secondary' : #deecf4,
'dark' : #3e4862,
),
'border': (
'color' : #cad6df,
'width' : 1px,
'style' : solid,
'radius' : .245rem,
),
'shadow': (
'horizontal' : 0,
'vertical' : 5px,
'blur' : 12px,
'spread' : 0,
'color' : rgba(37,44,97,.19),
),
'input': (
'color' : null, // (null = color > text)
'background' : white,
'border-color' : null, // (null = border > color)
'outline-color' : #5665A1,
'outline-width' : 1px,
'label-weight' : 500,
'transition' : .35s
),
'components': (
'navbar': (
'font-weight': 500
),
'tabnav': (
'font-weight': 400
),
'card': (
'background' : white, // (null = color > background)
'radius' : null // (null = border > radius)
),
'panel': (
'background' : null, // (null = color > background)
'radius' : null // (null = border > radius)
),
'menu': (
'background': white, // (null = color > background)
)
),
'elements': (
'button': (
'font-weight' : 500,
'radius' : null, // (null = border > radius)
'secondary': (
'color' : white,
'background' : #5fbef0,
'hover-color' : null,
'hover-bg' : lighten(#5fbef0, 4%),
'border-color' : darken(#5fbef0, 3%)
)
),
)
)
)
10 changes: 10 additions & 0 deletions elegance/punica-elegance.min.css

Large diffs are not rendered by default.

0 comments on commit 99cffaf

Please sign in to comment.