From ab0f0cda1ad8a1bed8fa680171bbbf42dbadbd70 Mon Sep 17 00:00:00 2001 From: Maitra Khatri Date: Sat, 29 Jan 2022 01:06:54 +0530 Subject: [PATCH] set default font and colors --- style.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 style.css diff --git a/style.css b/style.css new file mode 100644 index 0000000..ffd6141 --- /dev/null +++ b/style.css @@ -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; +} \ No newline at end of file