UNPKG

1.94 kBSCSSView Raw
1$cal-event-color-primary: #1e90ff !default;
2$cal-event-color-secondary: #d1e8ff !default;
3$cal-border-color: #e1e1e1 !default;
4$cal-bg-primary: #fff !default;
5$cal-bg-secondary: #fafafa !default;
6$cal-bg-active: #ededed !default;
7$cal-today-bg: #e8fde7 !default;
8$cal-weekend-color: #8b0000 !default;
9$cal-badge-color: #b94a48 !default;
10$cal-current-time-marker-color: #ea4334 !default;
11$cal-white: #fff !default;
12$cal-gray: #555 !default;
13$cal-black: #000 !default;
14
15$cal-vars: () !default;
16$cal-vars: map-merge(
17 (
18
19 // the default event primary color if not set on the event color object
20 event-color-primary: $cal-event-color-primary,
21
22 // the default event secondary color if not set on the event color object
23 event-color-secondary: $cal-event-color-secondary,
24
25 // the border color used between cells
26 border-color: $cal-border-color,
27
28 // the primary background of each component
29 bg-primary: $cal-bg-primary,
30
31 // the secondary background, used for alternating rows on the day and week views
32 bg-secondary: $cal-bg-secondary,
33
34 // the color used when hovering over cells and headers
35 bg-active: $cal-bg-active,
36
37 // the background color to mark today in the week view header
38 today-bg: $cal-today-bg,
39
40 // the color used to indicate a day is a weekend
41 weekend-color: $cal-weekend-color,
42
43 // the badge background color on the month view
44 badge-color: $cal-badge-color,
45
46 // the current time marker color on the week and day view
47 current-time-marker-color: $cal-current-time-marker-color,
48
49 // a standard white color used for tooltip text and month view event titles
50 white: $cal-white,
51
52 // a standard gray color used for the background color of the open month view events box
53 gray: $cal-gray,
54
55 // a standard black color used as the tooltip background and the gradient color of the open month view events
56 black: $cal-black
57
58 ),
59 $cal-vars
60);