${inputMessageInvalid}
${inputMessageValid}
@@ -266,6 +277,7 @@ const componentTokens = {
...inlineEditableTokens,
...inputNumberTokens,
...graphTokens,
+ ...inputDatePickerTokens,
...inputTokens,
...inputTextTokens,
...inputMessageTokens,
diff --git a/packages/calcite-components/src/custom-theme/input-date-picker.ts b/packages/calcite-components/src/custom-theme/input-date-picker.ts
new file mode 100644
index 00000000000..82c2f0d19db
--- /dev/null
+++ b/packages/calcite-components/src/custom-theme/input-date-picker.ts
@@ -0,0 +1,51 @@
+import { html } from "../../support/formatting";
+
+export const inputDatePickerTokens = {
+ calciteInputDatePickerBackgroundColor: "",
+ calciteInputDatePickerBorderColor: "",
+ calciteInputDatePickerDividerColor: "",
+ calciteInputDatePickerIconColor: "",
+ calciteInputDatePickerIconColorHover: "",
+ calciteInputDatePickerShadow: "",
+ calciteInputDatePickerInputBackgroundColor: "",
+ calciteInputDatePickerInputBorderColor: "",
+ calciteInputDatePickerInputCornerRadius: "",
+ calciteInputDatePickerInputShadow: "",
+ calciteInputDatePickerInputIconColor: "",
+ calciteInputDatePickerInputIconColorHover: "",
+ calciteInputDatePickerInputTextColor: "",
+ calciteInputDatePickerInputPlaceholderTextColor: "",
+ calciteInputDatePickerDatePickerBorderColor: "",
+ calciteInputDatePickerDatePickerCornerRadius: "",
+ calciteInputDatePickerDatePickerRangeCalendarDividerColor: "",
+ calciteInputDatePickerDatePickerWeekHeaderTextColor: "",
+ calciteInputDatePickerDatePickerHeaderActionBackgroundColor: "",
+ calciteInputDatePickerDatePickerHeaderActionBackgroundColorHover: "",
+ calciteInputDatePickerDatePickerHeaderActionBackgroundColorPress: "",
+ calciteInputDatePickerDatePickerHeaderActionTextColor: "",
+ calciteInputDatePickerDatePickerHeaderActionTextColorPress: "",
+ calciteInputDatePickerDatePickerYearTextColor: "",
+ calciteInputDatePickerDatePickerMonthSelectFontSize: "",
+ calciteInputDatePickerDatePickerMonthSelectTextColor: "",
+ calciteInputDatePickerDatePickerMonthSelectIconColor: "",
+ calciteInputDatePickerDatePickerMonthSelectIconColorHover: "",
+ calciteInputDatePickerDatePickerDayBackgroundColor: "",
+ calciteInputDatePickerDatePickerDayBackgroundColorHover: "",
+ calciteInputDatePickerDatePickerDayTextColor: "",
+ calciteInputDatePickerDatePickerDayTextColorHover: "",
+ calciteInputDatePickerDatePickerCurrentDayTextColor: "",
+ calciteInputDatePickerDatePickerDayBackgroundColorSelected: "",
+ calciteInputDatePickerDatePickerDayTextColorSelected: "",
+ calciteInputDatePickerDatePickerDayRangeTextColor: "",
+ calciteInputDatePickerDatePickerDayRangeBackgroundColor: "",
+ calciteInputDatePickerDatePickerDayOutsideRangeBackgroundColorHover: "",
+ calciteInputDatePickerDatePickerDayOutsideRangeTextColorHover: "",
+};
+
+export const inputDatePicker = html`
`;
+export const inputDatePickerRange = html`
`;
+export const inputDatePickerRangeVertical = html`
`;