Skip to content

Commit

Permalink
set default font and colors
Browse files Browse the repository at this point in the history
  • Loading branch information
maitrakhatri committed Jan 28, 2022
1 parent a3513d0 commit ab0f0cd
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/* FONT */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap');

/* APPLYING FONT */
* {
font-family: 'Source Sans Pro', sans-serif;
}

/* DEFINING CUSTOM COLORS */
:root {
--primary: #14213D;
--secondary: #2E86AB;
--success: rgb(12, 195, 12);
--danger: #F24236;
--warning: #FCA311;
--bg-cus: #E5E5E5;
}

0 comments on commit ab0f0cd

Please sign in to comment.