@import "~angular-calendar/scss/angular-calendar";
.content {
// the default event primary color if not set on the event color object
$event-color-primary: nb-theme(color-primary-100);
// the default event secondary color if not set on the event color object
$event-color-secondary: nb-theme(color-primary-400);
// the border color used between cells
$border-color: nb-theme(border-basic-color-1);
// the primary background of each component
$bg-primary: nb-theme(background-primary-color-1);
// the secondary background, used for alternating rows on the day and week views
$bg-secondary: nb-theme(background-alternative-color-1);
// the color used when hovering over cells and headers
$bg-active: nb-theme(color-basic-active);
// the background color to mark today in the week view header
$today-bg: nb-theme(background-basic-color-1);
// the color used to indicate a day is a weekend
$weekend-color: nb-theme(color-danger-transparent-100);
// the badge background color on the month view
// color-info-500
$badge-color: nb-theme(background-basic-color-4);
// the current time marker color on the week and day view
$current-time-marker-color: nb-theme(color-info-700);
// a standard white color used for tooltip text and month view event titles
$white: nb-theme(color-primary-100);
// a standard gray color used for the background color of the open month view events box
$gray: nb-theme(color-primary-300);
// a standard black color used as the tooltip background and the gradient color of the open month view events
$black: nb-theme(color-primary-900);
// Call the calendar mixin with a sass color map of your theme. Every property is optional.
// For a list of all variables and how they are used,
// see https://github.com/mattlewis92/angular-calendar/tree/master/projects/angular-calendar/src/variables.scss
@include cal-theme(
(
// the default event primary color if not set on the event color object
event-color-primary: $event-color-primary,
// the default event secondary color if not set on the event color object
event-color-secondary: $event-color-secondary,
// the border color used between cells
border-color: $border-color,
// the primary background of each component
bg-primary: $bg-primary,
// the secondary background, used for alternating rows on the day and week views
bg-secondary: $bg-secondary,
// the color used when hovering over cells and headers
bg-active: $bg-active,
// the background color to mark today in the week view header
today-bg: $today-bg,
// the color used to indicate a day is a weekend
weekend-color: $weekend-color,
// the badge background color on the month view
badge-color: $badge-color,
// the current time marker color on the week and day view
current-time-marker-color: $current-time-marker-color,
// a standard white color used for tooltip text and month view event titles
white: $white,
// a standard gray color used for the background color of the open month view events box
gray: $gray,
// a standard black color used as the tooltip background and the gradient color of the open month view events
black: $black
)
);