Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sada_main.js « src « static - github.com/darshanbaral/sada.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0973a4d31ce02eacda5873b27ea37b37bdf2f127 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//'use strict'

var lightTheme = {
  mainBackground: "bg-white",
  altBackground: "bg-light",
  altText: "text-secondary",
  mainText: "text-dark",
  linkText: "text-success",
  skillBackground: "bg-success"
};

var darkTheme = {
  mainBackground: "bg-dark",
  altBackground: "bg-secondary",
  altText: "text-light",
  mainText: "text-white",
  linkText: "text-warning",
  skillBackground: "bg-warning"
};

var isDark = true;