Skip to content

Commit

Permalink
Add root global colors to CSS template
Browse files Browse the repository at this point in the history
  • Loading branch information
gregoriohc committed Sep 23, 2018
1 parent 018850a commit c3b7294
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions resources/css/theme.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
/************************* Global colors **************************/
:root {
--transparent: transparent;
--black: #22292f;
--white: white;
--white-50: rgba(255, 255, 255, 0.5);
--danger: #e74444;
--success: #21b978;
--warning: #ffeb3b;
--info: #03a9f4;
--primary: #4099de;
--primary-dark: #297ec0;
--primary-70: rgba(64, 153, 222, 0.7);
--primary-50: rgba(64, 153, 222, 0.5);
--primary-30: rgba(64, 153, 222, 0.3);
--primary-10: rgba(64, 153, 222, 0.1);
--logo: #252d37;
--sidebar-icon: #b3c1d1;
--20: #f6fbff;
--30: #f4f7fa;
--40: #eef1f4;
--50: #e3e7eb;
--60: #bacad6;
--70: #b3b9bf;
--80: #7c858e;
--90: #252d37;
--90-half: rgba(40, 54, 61, 0.5);
}

/************************* Header **************************/
.page-header {
}
Expand Down

0 comments on commit c3b7294

Please sign in to comment.