|
11 | 11 | <div class="calendar-nav flex items-center justify-between">
|
12 | 12 | <div class="flex items-center">
|
13 | 13 | <button type="button" (click)="setMonth(-2)">
|
14 |
| - <svg width="24" height="24" class="fill-grey-40"> |
| 14 | + <svg width="24" height="24" class="fill-neutral-10"> |
15 | 15 | <use xlink:href="#arrow-left-icon"></use>
|
16 | 16 | </svg>
|
17 | 17 | </button>
|
18 | 18 | </div>
|
19 | 19 |
|
20 |
| - <div class="text-center text-h4 text-new.gray-900 font-semibold">{{ monthMap[month] }} {{ year }}</div> |
| 20 | + <div class="text-center text-h4 text-neutral-12 font-semibold">{{ monthMap[month] }} {{ year }}</div> |
21 | 21 |
|
22 | 22 | <div class="flex items-center"></div>
|
23 | 23 | </div>
|
24 | 24 |
|
25 |
| - <div class="grid grid-cols-7 py-10px capitalize items-center text-center mt-20px font-semibold text-new.gray-900"> |
| 25 | + <div class="grid grid-cols-7 py-10px capitalize items-center text-center mt-20px font-semibold text-neutral-12"> |
26 | 26 | <div class="text-14">S</div>
|
27 | 27 | <div class="text-14">M</div>
|
28 | 28 | <div class="text-14">T</div>
|
|
33 | 33 | </div>
|
34 | 34 |
|
35 | 35 | <div class="days flex flex-wrap text-center mt-10px">
|
36 |
| - <button type="button" class="text-12 w-40px h-40px text-new.gray-600" [class]="getDayClassNames(date)" *ngFor="let date of datesForLeftCalendar" (click)="onselectDay(date.timestamp)"> |
| 36 | + <button type="button" class="text-12 w-40px h-40px text-neutral-10" [class]="getDayClassNames(date)" *ngFor="let date of datesForLeftCalendar" (click)="onselectDay(date.timestamp)"> |
37 | 37 | {{ date.date }}
|
38 | 38 | </button>
|
39 | 39 | </div>
|
|
49 | 49 | <div class="calendar-nav flex items-center justify-between">
|
50 | 50 | <div class="flex items-center"></div>
|
51 | 51 |
|
52 |
| - <div class="text-center text-h4 text-new.gray-900 font-semibold">{{ monthMap[monthRight] }} {{ yearRight }}</div> |
| 52 | + <div class="text-center text-h4 text-neutral-12 font-semibold">{{ monthMap[monthRight] }} {{ yearRight }}</div> |
53 | 53 |
|
54 | 54 | <div class="flex items-center">
|
55 | 55 | <button type="button" (click)="setMonth(2)">
|
56 |
| - <svg width="24" height="24" class="fill-grey-40"> |
| 56 | + <svg width="24" height="24" class="fill-neutral-10"> |
57 | 57 | <use xlink:href="#arrow-right-icon"></use>
|
58 | 58 | </svg>
|
59 | 59 | </button>
|
60 | 60 | </div>
|
61 | 61 | </div>
|
62 | 62 |
|
63 |
| - <div class="grid grid-cols-7 py-10px capitalize items-center text-center mt-20px font-semibold text-new.gray-900"> |
| 63 | + <div class="grid grid-cols-7 py-10px capitalize items-center text-center mt-20px font-semibold text-neutral-12"> |
64 | 64 | <div class="text-14">S</div>
|
65 | 65 | <div class="text-14">M</div>
|
66 | 66 | <div class="text-14">T</div>
|
|
71 | 71 | </div>
|
72 | 72 |
|
73 | 73 | <div class="days flex flex-wrap text-center mt-10px">
|
74 |
| - <button type="button" class="text-12 w-40px h-40px text-new.gray-600 empty:hidden" *ngFor="let date of datesForRightCalendar; let i = index" [class]="getDayClassNamesRightCalendar(date)" (click)="onselectDay(date.timestamp)"> |
| 74 | + <button type="button" class="text-12 w-40px h-40px text-neutral-10 empty:hidden" *ngFor="let date of datesForRightCalendar; let i = index" [class]="getDayClassNamesRightCalendar(date)" (click)="onselectDay(date.timestamp)"> |
75 | 75 | {{ date.date }}
|
76 | 76 | </button>
|
77 | 77 | </div>
|
|
0 commit comments