fix:The dock calendar is dynamically displayed icon by current date
dock日历根据日期动态显示图标(task:18543)
@ -80,12 +80,14 @@ AppItem::AppItem(const QDBusObjectPath &entry, QWidget *parent)
|
||||
m_dragging(false),
|
||||
|
||||
m_retryTimes(0),
|
||||
m_lastShowDay(0),
|
||||
m_lastclickTimes(0),
|
||||
|
||||
m_appIcon(QPixmap()),
|
||||
|
||||
m_updateIconGeometryTimer(new QTimer(this)),
|
||||
m_retryObtainIconTimer(new QTimer(this)),
|
||||
m_refershIconTimer(new QTimer(this)),
|
||||
|
||||
m_smallWatcher(new QFutureWatcher<QPixmap>(this)),
|
||||
m_largeWatcher(new QFutureWatcher<QPixmap>(this))
|
||||
@ -114,6 +116,9 @@ AppItem::AppItem(const QDBusObjectPath &entry, QWidget *parent)
|
||||
m_retryObtainIconTimer->setInterval(500);
|
||||
m_retryObtainIconTimer->setSingleShot(true);
|
||||
|
||||
m_refershIconTimer->setInterval(1000);
|
||||
m_refershIconTimer->setSingleShot(false);
|
||||
|
||||
connect(m_itemEntryInter, &DockEntryInter::IsActiveChanged, this, &AppItem::activeChanged);
|
||||
connect(m_itemEntryInter, &DockEntryInter::IsActiveChanged, this, static_cast<void (AppItem::*)()>(&AppItem::update));
|
||||
connect(m_itemEntryInter, &DockEntryInter::WindowInfosChanged, this, &AppItem::updateWindowInfos, Qt::QueuedConnection);
|
||||
@ -128,6 +133,14 @@ AppItem::AppItem(const QDBusObjectPath &entry, QWidget *parent)
|
||||
connect(GSettingsByApp(), &QGSettings::changed, this, &AppItem::onGSettingsChanged);
|
||||
connect(GSettingsByDockApp(), &QGSettings::changed, this, &AppItem::onGSettingsChanged);
|
||||
connect(DGuiApplicationHelper::instance(), &DGuiApplicationHelper::themeTypeChanged, this, &AppItem::onThemeTypeChanged);
|
||||
|
||||
connect(m_refershIconTimer, &QTimer::timeout, this, [=](){
|
||||
m_curDate = QDate::currentDate();
|
||||
if(m_curDate.day() != m_lastShowDay){
|
||||
m_lastShowDay = m_curDate.day();
|
||||
refershIcon();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
AppItem::~AppItem()
|
||||
@ -595,6 +608,10 @@ void AppItem::refershIcon()
|
||||
else
|
||||
m_appIcon = ThemeAppIcon::getIcon(icon, iconSize * 0.8, devicePixelRatioF());
|
||||
|
||||
if(!m_refershIconTimer->isActive()&&m_itemEntryInter->icon() == "dde-calendar"){
|
||||
m_refershIconTimer->start();
|
||||
}
|
||||
|
||||
if (m_appIcon.isNull()) {
|
||||
if (m_retryTimes < 5) {
|
||||
m_retryTimes++;
|
||||
|
@ -113,6 +113,7 @@ private:
|
||||
bool m_dragging;
|
||||
bool m_active;
|
||||
int m_retryTimes;
|
||||
int m_lastShowDay;
|
||||
unsigned long m_lastclickTimes;
|
||||
|
||||
WindowInfoMap m_windowInfos;
|
||||
@ -125,6 +126,9 @@ private:
|
||||
|
||||
QTimer *m_updateIconGeometryTimer;
|
||||
QTimer *m_retryObtainIconTimer;
|
||||
QTimer *m_refershIconTimer;
|
||||
|
||||
QDate m_curDate;
|
||||
|
||||
QFutureWatcher<QPixmap> *m_smallWatcher;
|
||||
QFutureWatcher<QPixmap> *m_largeWatcher;
|
||||
|
@ -6,6 +6,7 @@
|
||||
<file>resources/indicator_active_ver.svg</file>
|
||||
<file>resources/indicator_dark_ver.svg</file>
|
||||
<file>resources/indicator_active.svg</file>
|
||||
<file>resources/calendar_bg.svg</file>
|
||||
</qresource>
|
||||
<qresource prefix="/icons">
|
||||
<file>resources/arrow-up.svg</file>
|
||||
@ -16,5 +17,55 @@
|
||||
<file>resources/close_round_hover.svg</file>
|
||||
<file>resources/close_round_press.svg</file>
|
||||
<file>resources/close_round_normal.svg</file>
|
||||
<file>resources/day1.svg</file>
|
||||
<file>resources/day2.svg</file>
|
||||
<file>resources/day3.svg</file>
|
||||
<file>resources/day4.svg</file>
|
||||
<file>resources/day5.svg</file>
|
||||
<file>resources/day6.svg</file>
|
||||
<file>resources/day7.svg</file>
|
||||
<file>resources/day8.svg</file>
|
||||
<file>resources/day9.svg</file>
|
||||
<file>resources/day10.svg</file>
|
||||
<file>resources/day11.svg</file>
|
||||
<file>resources/day12.svg</file>
|
||||
<file>resources/day13.svg</file>
|
||||
<file>resources/day14.svg</file>
|
||||
<file>resources/day15.svg</file>
|
||||
<file>resources/day16.svg</file>
|
||||
<file>resources/day17.svg</file>
|
||||
<file>resources/day18.svg</file>
|
||||
<file>resources/day19.svg</file>
|
||||
<file>resources/day20.svg</file>
|
||||
<file>resources/day21.svg</file>
|
||||
<file>resources/day22.svg</file>
|
||||
<file>resources/day23.svg</file>
|
||||
<file>resources/day24.svg</file>
|
||||
<file>resources/day25.svg</file>
|
||||
<file>resources/day26.svg</file>
|
||||
<file>resources/day27.svg</file>
|
||||
<file>resources/day28.svg</file>
|
||||
<file>resources/day29.svg</file>
|
||||
<file>resources/day30.svg</file>
|
||||
<file>resources/day31.svg</file>
|
||||
<file>resources/month1.svg</file>
|
||||
<file>resources/month2.svg</file>
|
||||
<file>resources/month3.svg</file>
|
||||
<file>resources/month4.svg</file>
|
||||
<file>resources/month5.svg</file>
|
||||
<file>resources/month6.svg</file>
|
||||
<file>resources/month7.svg</file>
|
||||
<file>resources/month8.svg</file>
|
||||
<file>resources/month9.svg</file>
|
||||
<file>resources/month10.svg</file>
|
||||
<file>resources/month11.svg</file>
|
||||
<file>resources/month12.svg</file>
|
||||
<file>resources/week1.svg</file>
|
||||
<file>resources/week2.svg</file>
|
||||
<file>resources/week3.svg</file>
|
||||
<file>resources/week4.svg</file>
|
||||
<file>resources/week5.svg</file>
|
||||
<file>resources/week6.svg</file>
|
||||
<file>resources/week7.svg</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
35
frame/item/resources/calendar_bg.svg
Normal file
@ -0,0 +1,35 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64" viewBox="0 0 64 64">
|
||||
<defs>
|
||||
<filter id="calendar备份-14-a" width="125.9%" height="127.8%" x="-12%" y="-12%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" result="shadowMatrixOuter1" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
|
||||
<feMerge>
|
||||
<feMergeNode in="shadowMatrixOuter1"/>
|
||||
<feMergeNode in="SourceGraphic"/>
|
||||
</feMerge>
|
||||
</filter>
|
||||
<radialGradient id="calendar备份-14-b" cx="54.324%" cy="55.779%" r="61.914%" fx="54.324%" fy="55.779%" gradientTransform="matrix(-.81914 -.50611 .72543 -.9141 .584 1.343)">
|
||||
<stop offset="0%"/>
|
||||
<stop offset="100%" stop-opacity=".148"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="calendar备份-14-e" x1="69.809%" x2="57.001%" y1="71.097%" y2="57.701%">
|
||||
<stop offset="0%" stop-color="#C6C6C6"/>
|
||||
<stop offset="53.052%" stop-color="#E7E7E7"/>
|
||||
<stop offset="100%" stop-color="#F4F4F4"/>
|
||||
</linearGradient>
|
||||
<path id="calendar备份-14-d" d="M54,36.5 C54,36.5 52.7578833,40.9842333 52,42.5 C51,44.5 49.9672131,44.1321429 48,46.5 C46.0327869,48.8678571 47.3606557,49.325 44.4098361,51.8142857 C42.8284824,53.1483019 38.5,54 38.5,54 C50.7336066,54 54,42.9964286 54,36.5 Z"/>
|
||||
<filter id="calendar备份-14-c" width="125.8%" height="122.9%" x="-12.9%" y="-5.7%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation=".5"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" fill-rule="evenodd" filter="url(#calendar备份-14-a)" transform="rotate(-8 65.252 -6.252)">
|
||||
<rect width="54" height="54" fill="#FFF" rx="9.75"/>
|
||||
<path fill="url(#calendar备份-14-b)" fill-opacity=".39" d="M54,37 L54,44.25 C54,49.6347763 49.6347763,54 44.25,54 L39,54 C44.125,53.375 47.7291667,51.3958333 49.8125,48.0625 C51.8958333,44.7291667 53.2916667,41.0416667 54,37 Z"/>
|
||||
<use fill="#000" filter="url(#calendar备份-14-c)" xlink:href="#calendar备份-14-d"/>
|
||||
<use fill="url(#calendar备份-14-e)" xlink:href="#calendar备份-14-d"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
15
frame/item/resources/day1.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<polygon id="day1-b" points="15.484 22.222 15.484 3 12.729 3 10 4.991 10 7.917 12.729 5.914 12.729 22.222"/>
|
||||
<filter id="day1-a" width="227.6%" height="136.4%" x="-63.8%" y="-13%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 12.742 12.61)">
|
||||
<use fill="#000" filter="url(#day1-a)" xlink:href="#day1-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day1-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day1-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 919 B |
15
frame/item/resources/day10.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<path id="day10-b" d="M8.484375,22.3798828 L8.484375,3.15820312 L5.72900391,3.15820312 L3,5.14892578 L3,8.07568359 L5.72900391,6.07177734 L5.72900391,22.3798828 L8.484375,22.3798828 Z M18.9277344,22.5380859 C20.421875,22.5205078 21.6918945,22.0371094 22.737793,21.0878906 C23.8012695,20.1298828 24.3505859,18.7675781 24.3857422,17.0009766 L24.3857422,8.52392578 C24.3505859,6.74853516 23.8012695,5.38183594 22.737793,4.42382812 C21.6918945,3.47460938 20.421875,3 18.9277344,3 C17.4775391,3 16.2294922,3.47460938 15.1835938,4.42382812 C14.0673828,5.38183594 13.5004883,6.74853516 13.4829102,8.52392578 L13.4829102,17.0009766 C13.5004883,18.7675781 14.0673828,20.1298828 15.1835938,21.0878906 C16.2294922,22.0371094 17.4775391,22.5205078 18.9277344,22.5380859 Z M18.9277344,19.7827148 C17.1699219,19.7651367 16.2734375,18.7851562 16.2382812,16.8427734 L16.2382812,8.6953125 C16.2734375,6.77050781 17.1699219,5.79052734 18.9277344,5.75537109 C20.6767578,5.79052734 21.5776367,6.77050781 21.6303711,8.6953125 L21.6303711,16.8427734 C21.5776367,18.7851562 20.6767578,19.7651367 18.9277344,19.7827148 Z"/>
|
||||
<filter id="day10-a" width="132.7%" height="135.8%" x="-16.4%" y="-12.8%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 13.693 12.769)">
|
||||
<use fill="#000" filter="url(#day10-a)" xlink:href="#day10-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day10-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day10-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
15
frame/item/resources/day11.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<path id="day11-b" d="M10.484375,22.2216797 L10.484375,3 L7.72900391,3 L5,4.99072266 L5,7.91748047 L7.72900391,5.91357422 L7.72900391,22.2216797 L10.484375,22.2216797 Z M22.4438477,22.2216797 L22.4438477,3 L19.6884766,3 L16.9594727,4.99072266 L16.9594727,7.91748047 L19.6884766,5.91357422 L19.6884766,22.2216797 L22.4438477,22.2216797 Z"/>
|
||||
<filter id="day11-a" width="140.1%" height="136.4%" x="-20.1%" y="-13%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 13.722 12.61)">
|
||||
<use fill="#000" filter="url(#day11-a)" xlink:href="#day11-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day11-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day11-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
15
frame/item/resources/day12.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<path id="day12-b" d="M8.484375,22.3798828 L8.484375,3.15820312 L5.72900391,3.15820312 L3,5.14892578 L3,8.07568359 L5.72900391,6.07177734 L5.72900391,22.3798828 L8.484375,22.3798828 Z M24.2802734,22.3798828 L24.2802734,19.6245117 L16.9370117,19.6245117 L23.1201172,11.8725586 C23.8935547,10.8881836 24.2802734,9.76318359 24.2802734,8.49755859 C24.2626953,6.91552734 23.730957,5.61035156 22.6850586,4.58203125 C21.6567383,3.54492188 20.3164062,3.01757812 18.6640625,3 C17.1875,3.01757812 15.9438477,3.53613281 14.9331055,4.55566406 C13.9311523,5.6015625 13.3950195,6.92431641 13.324707,8.52392578 L16.0668945,8.52392578 C16.1635742,7.64501953 16.4711914,6.96386719 16.9897461,6.48046875 C17.4907227,5.99707031 18.1191406,5.75537109 18.875,5.75537109 C19.7275391,5.77294922 20.3867188,6.04980469 20.8525391,6.5859375 C21.3007812,7.12207031 21.5249023,7.75048828 21.5249023,8.47119141 C21.5249023,8.74365234 21.4897461,9.03369141 21.4194336,9.34130859 C21.3139648,9.66650391 21.1162109,10.0180664 20.8261719,10.3959961 L13.324707,19.7827148 L13.324707,22.3798828 L24.2802734,22.3798828 Z"/>
|
||||
<filter id="day12-a" width="132.9%" height="136.1%" x="-16.4%" y="-12.9%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 13.64 12.69)">
|
||||
<use fill="#000" filter="url(#day12-a)" xlink:href="#day12-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day12-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day12-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
15
frame/item/resources/day13.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<path id="day13-b" d="M8.484375,22.3798828 L8.484375,3.15820312 L5.72900391,3.15820312 L3,5.14892578 L3,8.07568359 L5.72900391,6.07177734 L5.72900391,22.3798828 L8.484375,22.3798828 Z M18.2553711,22.5380859 C19.9516602,22.5205078 21.340332,21.9799805 22.4213867,20.9165039 C23.5200195,19.8793945 24.078125,18.4599609 24.0957031,16.6582031 C24.0957031,15.8496094 23.9243164,15.0761719 23.581543,14.3378906 C23.2211914,13.5996094 22.6367188,12.9667969 21.828125,12.4394531 C22.6191406,11.9033203 23.168457,11.2924805 23.4760742,10.6069336 C23.7397461,9.92138672 23.871582,9.20947266 23.871582,8.47119141 C23.8540039,7.01220703 23.3530273,5.74658203 22.3686523,4.67431641 C21.340332,3.57568359 19.9516602,3.01757812 18.2026367,3 C16.8227539,3.01757812 15.6362305,3.50976562 14.6430664,4.4765625 C13.6323242,5.45214844 13.0566406,6.65185547 12.9160156,8.07568359 L15.6713867,8.07568359 C15.847168,7.28466797 16.1899414,6.70019531 16.699707,6.32226562 C17.1831055,5.94433594 17.7192383,5.75537109 18.3081055,5.75537109 C19.1254883,5.77294922 19.793457,6.03222656 20.3120117,6.53320312 C20.8305664,7.05175781 21.0986328,7.71533203 21.1162109,8.52392578 C21.1162109,9.32373047 20.8569336,9.97412109 20.3383789,10.4750977 C19.8198242,10.9936523 19.090332,11.2529297 18.1499023,11.2529297 L17.2006836,11.2529297 L17.2006836,13.6918945 L18.3608398,13.6918945 C19.2133789,13.6918945 19.9165039,13.9511719 20.4702148,14.4697266 C21.0327148,15.0058594 21.3227539,15.7617187 21.340332,16.7373047 C21.3227539,17.6953125 21.0327148,18.4335938 20.4702148,18.9521484 C19.9165039,19.5058594 19.2353516,19.7827148 18.4267578,19.7827148 C17.6708984,19.7827148 17.0644531,19.5761719 16.6074219,19.1630859 C16.1591797,18.7675781 15.8120117,18.2490234 15.565918,17.6074219 L12.8105469,17.6074219 C13.109375,19.2070312 13.7641602,20.4287109 14.7749023,21.2724609 C15.7856445,22.1162109 16.9458008,22.5380859 18.2553711,22.5380859 Z"/>
|
||||
<filter id="day13-a" width="133.2%" height="135.8%" x="-16.6%" y="-12.8%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 13.548 12.769)">
|
||||
<use fill="#000" filter="url(#day13-a)" xlink:href="#day13-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day13-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day13-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.7 KiB |
15
frame/item/resources/day14.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<path id="day14-b" d="M8.484375,22.2216797 L8.484375,3 L5.72900391,3 L3,4.99072266 L3,7.91748047 L5.72900391,5.91357422 L5.72900391,22.2216797 L8.484375,22.2216797 Z M23.5551758,22.2216797 L23.5551758,19.3608398 L25.0844727,19.3608398 L25.0844727,16.7636719 L23.5551758,16.7636719 L23.5551758,11.2397461 L20.7998047,11.2397461 L20.7998047,16.7636719 L15.7768555,16.7636719 L22.2763672,3 L19.2045898,3 L12.7841797,16.7636719 L12.7841797,19.3608398 L20.7998047,19.3608398 L20.7998047,22.2216797 L23.5551758,22.2216797 Z"/>
|
||||
<filter id="day14-a" width="131.7%" height="136.4%" x="-15.8%" y="-13%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 14.042 12.61)">
|
||||
<use fill="#000" filter="url(#day14-a)" xlink:href="#day14-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day14-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day14-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
15
frame/item/resources/day15.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<path id="day15-b" d="M8.484375,22.2216797 L8.484375,3 L5.72900391,3 L3,4.99072266 L3,7.91748047 L5.72900391,5.91357422 L5.72900391,22.2216797 L8.484375,22.2216797 Z M19.0727539,22.3798828 C20.0395508,22.3623047 20.8745117,22.1381836 21.5776367,21.7075195 C22.2983398,21.2944336 22.8476562,20.8374023 23.2255859,20.3364258 C23.65625,19.8266602 23.9638672,19.2421875 24.1484375,18.5830078 C24.3242188,17.9150391 24.4121094,16.9570312 24.4121094,15.7089844 C24.4121094,14.9003906 24.3857422,14.2192383 24.3330078,13.6655273 C24.2802734,13.1206055 24.1923828,12.6591797 24.0693359,12.28125 C23.8320312,11.5869141 23.4453125,10.9760742 22.9091797,10.4487305 C22.5488281,10.0532227 22.0786133,9.71923828 21.4985352,9.44677734 C20.8833008,9.20068359 20.206543,9.06884766 19.4682617,9.05126953 C18.3168945,9.05126953 17.2929688,9.40283203 16.3964844,10.105957 L16.3964844,5.75537109 L24.0429688,5.75537109 L24.0429688,3 L13.7993164,3 L13.7993164,13.3886719 L16.3964844,13.3886719 C16.7216797,12.7998047 17.0908203,12.3867188 17.5039062,12.1494141 C17.9169922,11.9208984 18.3740234,11.8066406 18.875,11.8066406 C19.4375,11.8066406 19.9077148,11.8857422 20.2856445,12.0439453 C20.6635742,12.2373047 20.9492188,12.496582 21.1425781,12.8217773 C21.5029297,13.5073242 21.6743164,14.3994141 21.6567383,15.4980469 C21.6567383,15.9462891 21.6479492,16.4077148 21.6303711,16.8823242 C21.5952148,17.3657227 21.4985352,17.8139648 21.340332,18.2270508 C21.190918,18.6401367 20.9272461,18.9741211 20.5493164,19.2290039 C20.1538086,19.4926758 19.6264648,19.6245117 18.9672852,19.6245117 C17.4291992,19.6069336 16.5107422,18.8598633 16.2119141,17.3833008 L13.456543,17.3833008 C13.7202148,19.1499023 14.4013672,20.4287109 15.5,21.2197266 C16.5810547,21.9931641 17.7719727,22.3798828 19.0727539,22.3798828 Z"/>
|
||||
<filter id="day15-a" width="132.7%" height="136.1%" x="-16.3%" y="-12.9%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 13.706 12.69)">
|
||||
<use fill="#000" filter="url(#day15-a)" xlink:href="#day15-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day15-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day15-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
15
frame/item/resources/day16.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<path id="day16-b" d="M8.484375,22.4194336 L8.484375,3.19775391 L5.72900391,3.19775391 L3,5.18847656 L3,8.11523437 L5.72900391,6.11132812 L5.72900391,22.4194336 L8.484375,22.4194336 Z M17.2797852,22.40625 C17.8950195,22.5820312 18.6025391,22.6347656 19.4023437,22.5644531 C20.1669922,22.5029297 20.8261719,22.340332 21.3798828,22.0766602 C21.9335937,21.8129883 22.4038086,21.4987793 22.7905273,21.1340332 C23.1772461,20.7692871 23.4892578,20.3825684 23.7265625,19.973877 C23.9638672,19.5651855 24.1462402,19.1828613 24.2736816,18.8269043 C24.401123,18.4709473 24.4890137,18.1633301 24.5373535,17.9040527 C24.5856934,17.6447754 24.6142578,17.484375 24.6230469,17.4228516 C24.6318359,17.2998047 24.6384277,17.1503906 24.6428223,16.9746094 C24.6472168,16.7988281 24.6494141,16.6252441 24.6494141,16.4538574 L24.6494141,16.4538574 L24.6494141,15.6958008 C24.6494141,15.5288086 24.6252441,15.2980957 24.5769043,15.0036621 C24.5285645,14.7092285 24.4428711,14.3928223 24.3198242,14.0544434 C24.1967773,13.7160645 24.0275879,13.3688965 23.8122559,13.0129395 C23.5969238,12.6569824 23.3266602,12.3339844 23.0014648,12.0439453 C22.6762695,11.7539062 22.2873535,11.512207 21.8347168,11.3188477 C21.3820801,11.1254883 20.8525391,11.0200195 20.2460937,11.0024414 C19.8242187,10.9848633 19.4528809,10.9914551 19.1320801,11.0222168 C18.8112793,11.0529785 18.5234375,11.1430664 18.2685547,11.2924805 C18.3916016,11.081543 18.5454102,10.800293 18.7299805,10.4487305 C18.9145508,10.097168 19.1188965,9.70605469 19.3430176,9.27539062 C19.5671387,8.84472656 19.8000488,8.39208984 20.041748,7.91748047 C20.2834473,7.44287109 20.520752,6.97265625 20.7536621,6.50683594 C20.9865723,6.04101562 21.2084961,5.59716797 21.4194336,5.17529297 C21.6303711,4.75341797 21.8149414,4.37988281 21.9731445,4.0546875 C22.1313477,3.72949219 22.2565918,3.47241211 22.348877,3.28344727 C22.4411621,3.09448242 22.4829102,3 22.4741211,3 L22.4741211,3 L19.362793,3 C18.5102539,4.71386719 17.7412109,6.26513672 17.0556641,7.65380859 C16.765625,8.25146484 16.4755859,8.84033203 16.1855469,9.42041016 C15.8955078,10.0004883 15.6340332,10.5322266 15.401123,11.015625 C15.1682129,11.4990234 14.9726562,11.9055176 14.8144531,12.2351074 C14.65625,12.5646973 14.5595703,12.7734375 14.5244141,12.8613281 C14.3837891,13.2128906 14.2607422,13.5380859 14.1552734,13.8369141 C14.0498047,14.1357422 13.9553223,14.4389648 13.8718262,14.746582 C13.7883301,15.0541992 13.7158203,15.3771973 13.6542969,15.7155762 C13.5927734,16.0539551 13.5356445,16.4384766 13.4829102,16.8691406 C13.4477539,17.1591797 13.4587402,17.5107422 13.5158691,17.9238281 C13.572998,18.3369141 13.6872559,18.7675781 13.8586426,19.2158203 C14.0300293,19.6640625 14.2651367,20.1013184 14.5639648,20.5275879 C14.862793,20.9538574 15.2363281,21.3295898 15.6845703,21.6547852 C16.1328125,21.9799805 16.6645508,22.2304687 17.2797852,22.40625 Z M19.1254883,19.7431641 C18.6333008,19.7431641 18.2224121,19.6816406 17.8928223,19.5585937 C17.5632324,19.4355469 17.2929688,19.2773437 17.0820312,19.0839844 C16.8710938,18.890625 16.7084961,18.6687012 16.5942383,18.4182129 C16.4799805,18.1677246 16.3986816,17.9084473 16.3503418,17.6403809 C16.302002,17.3723145 16.2734375,17.104248 16.2646484,16.8361816 C16.2558594,16.5681152 16.2514648,16.3242187 16.2514648,16.1044922 C16.2514648,16.0078125 16.2734375,15.8693848 16.3173828,15.689209 C16.3613281,15.5090332 16.4338379,15.3134766 16.5349121,15.1025391 C16.6359863,14.8916016 16.7634277,14.6784668 16.9172363,14.4631348 C17.0710449,14.2478027 17.253418,14.0566406 17.4643555,13.8896484 C17.675293,13.7226562 17.9169922,13.5908203 18.1894531,13.4941406 C18.4619141,13.3974609 18.7651367,13.3623047 19.0991211,13.3886719 C19.8110352,13.4414062 20.3603516,13.5996094 20.7470703,13.8632812 C21.1337891,14.1269531 21.4128418,14.4411621 21.5842285,14.8059082 C21.7556152,15.1706543 21.8544922,15.5551758 21.8808594,15.9594727 C21.9072266,16.3637695 21.9204102,16.7329102 21.9204102,17.0668945 C21.9204102,17.1459961 21.9072266,17.2668457 21.8808594,17.4294434 C21.8544922,17.592041 21.8039551,17.7744141 21.729248,17.9765625 C21.654541,18.1787109 21.5512695,18.3852539 21.4194336,18.5961914 C21.2875977,18.8071289 21.1184082,18.998291 20.9118652,19.1696777 C20.7053223,19.3410645 20.454834,19.4816895 20.1604004,19.5915527 C19.8659668,19.701416 19.5209961,19.7519531 19.1254883,19.7431641 Z"/>
|
||||
<filter id="day16-a" width="132.3%" height="135.7%" x="-16.2%" y="-12.8%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 13.825 12.797)">
|
||||
<use fill="#000" filter="url(#day16-a)" xlink:href="#day16-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day16-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day16-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.0 KiB |
15
frame/item/resources/day17.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<path id="day17-b" d="M8.484375,22.2216797 L8.484375,3 L5.72900391,3 L3,4.99072266 L3,7.91748047 L5.72900391,5.91357422 L5.72900391,22.2216797 L8.484375,22.2216797 Z M18.2553711,22.2216797 L24.7680664,5.75537109 L24.7680664,3 L13.8256836,3 L13.8256836,8.53710938 L16.5810547,8.53710938 L16.5810547,5.75537109 L21.6831055,5.75537109 L15.1835938,22.2216797 L18.2553711,22.2216797 Z"/>
|
||||
<filter id="day17-a" width="132.2%" height="136.4%" x="-16.1%" y="-13%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 13.884 12.61)">
|
||||
<use fill="#000" filter="url(#day17-a)" xlink:href="#day17-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day17-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day17-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
15
frame/item/resources/day18.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<path id="day18-b" d="M8.484375,22.3798828 L8.484375,3.15820312 L5.72900391,3.15820312 L3,5.14892578 L3,8.07568359 L5.72900391,6.07177734 L5.72900391,22.3798828 L8.484375,22.3798828 Z M18.9277344,22.5380859 C20.5712891,22.5205078 21.9599609,21.9799805 23.09375,20.9165039 C24.2099609,19.8793945 24.7768555,18.4951172 24.7944336,16.7636719 C24.7768555,14.9091797 24.0209961,13.4677734 22.5268555,12.4394531 C23.0981445,11.9384766 23.5639648,11.362793 23.9243164,10.7124023 C24.2670898,10.105957 24.4384766,9.38525391 24.4384766,8.55029297 C24.4208984,6.95068359 23.8979492,5.62792969 22.8696289,4.58203125 C21.8500977,3.54492188 20.5361328,3.01757812 18.9277344,3 C17.3457031,3.01757812 16.0537109,3.54492188 15.0517578,4.58203125 C13.9882812,5.62792969 13.4477539,6.95068359 13.4301758,8.55029297 C13.4301758,9.38525391 13.6191406,10.105957 13.9970703,10.7124023 C14.3222656,11.362793 14.7705078,11.9384766 15.3417969,12.4394531 C13.8476562,13.4677734 13.0917969,14.9091797 13.0742188,16.7636719 C13.0917969,18.4951172 13.6762695,19.8793945 14.8276367,20.9165039 C15.9262695,21.9799805 17.2929688,22.5205078 18.9277344,22.5380859 Z M18.9277344,11.2529297 C18.2158203,11.2529297 17.5874023,11.0112305 17.0424805,10.527832 C16.4887695,10.0620117 16.203125,9.38525391 16.1855469,8.49755859 C16.203125,7.58349609 16.4887695,6.89355469 17.0424805,6.42773438 C17.5874023,5.97949219 18.2158203,5.75537109 18.9277344,5.75537109 C19.6660156,5.75537109 20.3076172,5.97949219 20.8525391,6.42773438 C21.3886719,6.89355469 21.6655273,7.58349609 21.6831055,8.49755859 C21.6655273,9.38525391 21.3886719,10.0620117 20.8525391,10.527832 C20.3076172,11.0112305 19.6660156,11.2529297 18.9277344,11.2529297 Z M18.9277344,19.7827148 C18.0839844,19.7827148 17.3676758,19.4882812 16.7788086,18.8994141 C16.1635742,18.3369141 15.847168,17.6162109 15.8295898,16.7373047 C15.847168,15.8408203 16.1635742,15.1113281 16.7788086,14.5488281 C17.3676758,13.9951172 18.0839844,13.7094727 18.9277344,13.6918945 C19.7978516,13.7094727 20.5273438,13.9951172 21.1162109,14.5488281 C21.7138672,15.1113281 22.0214844,15.8408203 22.0390625,16.7373047 C22.0214844,17.6162109 21.7138672,18.3369141 21.1162109,18.8994141 C20.5273438,19.4882812 19.7978516,19.7827148 18.9277344,19.7827148 Z"/>
|
||||
<filter id="day18-a" width="132.1%" height="135.8%" x="-16.1%" y="-12.8%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 13.897 12.769)">
|
||||
<use fill="#000" filter="url(#day18-a)" xlink:href="#day18-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day18-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day18-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.0 KiB |
15
frame/item/resources/day19.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<path id="day19-b" d="M8.484375,22.3320312 L8.484375,3.11035156 L5.72900391,3.11035156 L3,5.10107422 L3,8.02783203 L5.72900391,6.02392578 L5.72900391,22.3320312 L8.484375,22.3320312 Z M18.453125,22.3320312 C19.2880859,20.6445312 20.0439453,19.1152344 20.7207031,17.7441406 C21.0107422,17.1640625 21.2941895,16.5861816 21.5710449,16.010498 C21.8479004,15.4348145 22.1027832,14.9118652 22.3356934,14.4416504 C22.5686035,13.9714355 22.7619629,13.5737305 22.9157715,13.2485352 C23.0695801,12.9233398 23.1640625,12.7124023 23.1992188,12.6157227 C23.3398438,12.2641602 23.4628906,11.9389648 23.5683594,11.6401367 C23.6738281,11.3413086 23.7683105,11.0380859 23.8518066,10.7304688 C23.9353027,10.4228516 24.0078125,10.0998535 24.0693359,9.76147461 C24.1308594,9.4230957 24.1879883,9.03857422 24.2407227,8.60791016 C24.2758789,8.31787109 24.2670898,7.96850586 24.2143555,7.55981445 C24.1616211,7.15112305 24.0539551,6.72924805 23.8913574,6.29418945 C23.7287598,5.85913086 23.5024414,5.43066406 23.2124023,5.00878906 C22.9223633,4.58691406 22.5576172,4.21777344 22.1181641,3.90136719 C21.6787109,3.58496094 21.1535645,3.34326172 20.5427246,3.17626953 C19.9318848,3.00927734 19.2265625,2.9609375 18.4267578,3.03125 C17.6621094,3.1015625 17.0007324,3.26416016 16.442627,3.51904297 C15.8845215,3.77392578 15.4143066,4.07714844 15.0319824,4.42871094 C14.6496582,4.78027344 14.3398438,5.15600586 14.1025391,5.5559082 C13.8652344,5.95581055 13.6806641,6.33154297 13.5488281,6.68310547 C13.4169922,7.03466797 13.3269043,7.33569336 13.2785645,7.58618164 C13.2302246,7.83666992 13.2016602,7.99267578 13.1928711,8.05419922 C13.175293,8.17724609 13.1643066,8.32666016 13.1599121,8.50244141 C13.1555176,8.67822266 13.1533203,8.85180664 13.1533203,9.02319336 C13.1533203,9.19458008 13.1555176,9.35058594 13.1599121,9.49121094 C13.1643066,9.63183594 13.1665039,9.72851562 13.1665039,9.78125 C13.1665039,9.94824219 13.1950684,10.1789551 13.2521973,10.4733887 C13.3093262,10.7678223 13.4016113,11.0842285 13.5290527,11.4226074 C13.6564941,11.7609863 13.8256836,12.1081543 14.0366211,12.4641113 C14.2475586,12.8200684 14.5112305,13.1430664 14.8276367,13.4331055 C15.144043,13.7231445 15.5197754,13.9648438 15.954834,14.1582031 C16.3898926,14.3515625 16.8974609,14.4570312 17.4775391,14.4746094 C17.8994141,14.4921875 18.270752,14.4855957 18.5915527,14.454834 C18.9123535,14.4240723 19.2001953,14.3339844 19.4550781,14.1845703 C19.2880859,14.4746094 19.0705566,14.8745117 18.8024902,15.3842773 C18.5344238,15.894043 18.246582,16.4521484 17.9389648,17.0585938 C17.6313477,17.6650391 17.3193359,18.2802734 17.0029297,18.9042969 C16.6865234,19.5283203 16.4008789,20.0952148 16.1459961,20.6049805 C15.8911133,21.1147461 15.6845703,21.5300293 15.5263672,21.8508301 C15.3681641,22.1716309 15.293457,22.3320312 15.3022461,22.3320312 L15.3022461,22.3320312 L18.453125,22.3320312 Z M18.8212109,12.0918066 L18.6245117,12.0883789 C17.956543,12.0532227 17.4379883,11.9060059 17.0688477,11.6467285 C16.699707,11.3874512 16.4294434,11.0754395 16.2580566,10.7106934 C16.0866699,10.3459473 15.9833984,9.95703125 15.9482422,9.54394531 C15.9130859,9.13085938 15.8955078,8.75292969 15.8955078,8.41015625 C15.8955078,8.3046875 15.9350586,8.11132812 16.0141602,7.83007812 C16.0932617,7.54882812 16.2338867,7.25878906 16.4360352,6.95996094 C16.6381836,6.66113281 16.9128418,6.38867188 17.2600098,6.14257812 C17.6071777,5.89648438 18.0532227,5.76025391 18.5981445,5.73388672 C19.090332,5.70751953 19.5012207,5.74926758 19.8308105,5.85913086 C20.1604004,5.96899414 20.4306641,6.12060547 20.6416016,6.31396484 C20.8525391,6.50732422 21.0151367,6.73364258 21.1293945,6.99291992 C21.2436523,7.25219727 21.3249512,7.52246094 21.373291,7.80371094 C21.4216309,8.08496094 21.447998,8.36181641 21.4523926,8.63427734 C21.4567871,8.90673828 21.4633789,9.15283203 21.472168,9.37255859 C21.472168,9.47802734 21.4501953,9.61865234 21.40625,9.79443359 C21.3623047,9.97021484 21.2897949,10.161377 21.1887207,10.3679199 C21.0876465,10.5744629 20.9602051,10.7832031 20.8063965,10.9941406 C20.6525879,11.2050781 20.4702148,11.394043 20.2592773,11.5610352 C20.0483398,11.7280273 19.8066406,11.8620605 19.5341797,11.9631348 C19.2617188,12.064209 18.9584961,12.105957 18.6245117,12.0883789 L18.8212109,12.0918066 Z"/>
|
||||
<filter id="day19-a" width="132.9%" height="136.2%" x="-16.5%" y="-12.9%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 13.63 12.666)">
|
||||
<use fill="#000" filter="url(#day19-a)" xlink:href="#day19-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day19-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day19-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.9 KiB |
15
frame/item/resources/day2.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<path id="day2-b" d="M19.9555664,22.3798828 L19.9555664,19.6245117 L12.6123047,19.6245117 L18.7954102,11.8725586 C19.5688477,10.8881836 19.9555664,9.76318359 19.9555664,8.49755859 C19.9379883,6.91552734 19.40625,5.61035156 18.3603516,4.58203125 C17.3320312,3.54492188 15.9916992,3.01757812 14.3393555,3 C12.862793,3.01757812 11.6191406,3.53613281 10.6083984,4.55566406 C9.60644531,5.6015625 9.0703125,6.92431641 9,8.52392578 L11.7421875,8.52392578 C11.8388672,7.64501953 12.1464844,6.96386719 12.6650391,6.48046875 C13.1660156,5.99707031 13.7944336,5.75537109 14.550293,5.75537109 C15.402832,5.77294922 16.0620117,6.04980469 16.527832,6.5859375 C16.9760742,7.12207031 17.2001953,7.75048828 17.2001953,8.47119141 C17.2001953,8.74365234 17.1650391,9.03369141 17.0947266,9.34130859 C16.9892578,9.66650391 16.7915039,10.0180664 16.5014648,10.3959961 L9,19.7827148 L9,22.3798828 L19.9555664,22.3798828 Z"/>
|
||||
<filter id="day2-a" width="163.9%" height="136.1%" x="-31.9%" y="-12.9%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 14.478 12.69)">
|
||||
<use fill="#000" filter="url(#day2-a)" xlink:href="#day2-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day2-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day2-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
15
frame/item/resources/day20.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<path id="day20-b" d="M12.1934055,22.3798828 L12.1934055,19.6245117 L4.85014376,19.6245117 L11.0332492,11.8725586 C11.8066867,10.8881836 12.1934055,9.76318359 12.1934055,8.49755859 C12.1758274,6.91552734 11.6440891,5.61035156 10.5981906,4.58203125 C9.56987032,3.54492188 8.22953829,3.01757812 6.57719454,3 C5.10063204,3.01757812 3.8569797,3.53613281 2.84623751,4.55566406 C1.84428438,5.6015625 1.30815157,6.92431641 1.23783907,8.52392578 L3.98002657,8.52392578 C4.07670626,7.64501953 4.38432345,6.96386719 4.90287813,6.48046875 C5.4038547,5.99707031 6.03227267,5.75537109 6.78813204,5.75537109 C7.6406711,5.77294922 8.29985079,6.04980469 8.7656711,6.5859375 C9.21391329,7.12207031 9.43803438,7.75048828 9.43803438,8.47119141 C9.43803438,8.74365234 9.40287813,9.03369141 9.33256563,9.34130859 C9.22709688,9.66650391 9.02934298,10.0180664 8.73930392,10.3959961 L1.23783907,19.7827148 L1.23783907,22.3798828 L12.1934055,22.3798828 Z M20.8003391,22.5380859 C22.2944797,22.5205078 23.5644992,22.0371094 24.6103977,21.0878906 C25.6738742,20.1298828 26.2231906,18.7675781 26.2583469,17.0009766 L26.2583469,8.52392578 C26.2231906,6.74853516 25.6738742,5.38183594 24.6103977,4.42382812 C23.5644992,3.47460938 22.2944797,3 20.8003391,3 C19.3501438,3 18.1020969,3.47460938 17.0561984,4.42382812 C15.9399875,5.38183594 15.373093,6.74853516 15.3555149,8.52392578 L15.3555149,17.0009766 C15.373093,18.7675781 15.9399875,20.1298828 17.0561984,21.0878906 C18.1020969,22.0371094 19.3501438,22.5205078 20.8003391,22.5380859 Z M20.8003391,19.7827148 C19.0425266,19.7651367 18.1460422,18.7851562 18.1108859,16.8427734 L18.1108859,8.6953125 C18.1460422,6.77050781 19.0425266,5.79052734 20.8003391,5.75537109 C22.5493625,5.79052734 23.4502414,6.77050781 23.5029758,8.6953125 L23.5029758,16.8427734 C23.4502414,18.7851562 22.5493625,19.7651367 20.8003391,19.7827148 Z"/>
|
||||
<filter id="day20-a" width="128%" height="135.8%" x="-14%" y="-12.8%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 13.748 12.769)">
|
||||
<use fill="#000" filter="url(#day20-a)" xlink:href="#day20-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day20-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day20-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
15
frame/item/resources/day21.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<path id="day21-b" d="M13.9555664,22.3798828 L13.9555664,19.6245117 L6.61230469,19.6245117 L12.7954102,11.8725586 C13.5688477,10.8881836 13.9555664,9.76318359 13.9555664,8.49755859 C13.9379883,6.91552734 13.40625,5.61035156 12.3603516,4.58203125 C11.3320312,3.54492188 9.99169922,3.01757812 8.33935547,3 C6.86279297,3.01757812 5.61914062,3.53613281 4.60839844,4.55566406 C3.60644531,5.6015625 3.0703125,6.92431641 3,8.52392578 L5.7421875,8.52392578 C5.83886719,7.64501953 6.14648438,6.96386719 6.66503906,6.48046875 C7.16601562,5.99707031 7.79443359,5.75537109 8.55029297,5.75537109 C9.40283203,5.77294922 10.0620117,6.04980469 10.527832,6.5859375 C10.9760742,7.12207031 11.2001953,7.75048828 11.2001953,8.47119141 C11.2001953,8.74365234 11.1650391,9.03369141 11.0947266,9.34130859 C10.9892578,9.66650391 10.7915039,10.0180664 10.5014648,10.3959961 L3,19.7827148 L3,22.3798828 L13.9555664,22.3798828 Z M23.0786133,22.3798828 L23.0786133,3.15820312 L20.3232422,3.15820312 L17.5942383,5.14892578 L17.5942383,8.07568359 L20.3232422,6.07177734 L20.3232422,22.3798828 L23.0786133,22.3798828 Z"/>
|
||||
<filter id="day21-a" width="134.9%" height="136.1%" x="-17.4%" y="-12.9%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 13.04 12.69)">
|
||||
<use fill="#000" filter="url(#day21-a)" xlink:href="#day21-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day21-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day21-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
15
frame/item/resources/day22.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<path id="day22-b" d="M12.1829099,22.3798828 L12.1829099,19.6245117 L4.83964816,19.6245117 L11.0227536,11.8725586 C11.7961911,10.8881836 12.1829099,9.76318359 12.1829099,8.49755859 C12.1653318,6.91552734 11.6335935,5.61035156 10.587695,4.58203125 C9.55937472,3.54492188 8.21904269,3.01757812 6.56669894,3 C5.09013644,3.01757812 3.84648409,3.53613281 2.83574191,4.55566406 C1.83378878,5.6015625 1.29765597,6.92431641 1.22734347,8.52392578 L3.96953097,8.52392578 C4.06621066,7.64501953 4.37382784,6.96386719 4.89238253,6.48046875 C5.39335909,5.99707031 6.02177706,5.75537109 6.77763644,5.75537109 C7.6301755,5.77294922 8.28935519,6.04980469 8.7551755,6.5859375 C9.20341769,7.12207031 9.42753878,7.75048828 9.42753878,8.47119141 C9.42753878,8.74365234 9.39238253,9.03369141 9.32207003,9.34130859 C9.21660128,9.66650391 9.01884738,10.0180664 8.72880831,10.3959961 L1.22734347,19.7827148 L1.22734347,22.3798828 L12.1829099,22.3798828 Z M26.1423825,22.3798828 L26.1423825,19.6245117 L18.7991208,19.6245117 L24.9822263,11.8725586 C25.7556638,10.8881836 26.1423825,9.76318359 26.1423825,8.49755859 C26.1248044,6.91552734 25.5930661,5.61035156 24.5471677,4.58203125 C23.5188474,3.54492188 22.1785153,3.01757812 20.5261716,3 C19.0496091,3.01757812 17.8059568,3.53613281 16.7952146,4.55566406 C15.7932614,5.6015625 15.2571286,6.92431641 15.1868161,8.52392578 L17.9290036,8.52392578 C18.0256833,7.64501953 18.3333005,6.96386719 18.8518552,6.48046875 C19.3528318,5.99707031 19.9812497,5.75537109 20.7371091,5.75537109 C21.5896482,5.77294922 22.2488278,6.04980469 22.7146482,6.5859375 C23.1628903,7.12207031 23.3870114,7.75048828 23.3870114,8.47119141 C23.3870114,8.74365234 23.3518552,9.03369141 23.2815427,9.34130859 C23.1760739,9.66650391 22.97832,10.0180664 22.688281,10.3959961 L15.1868161,19.7827148 L15.1868161,22.3798828 L26.1423825,22.3798828 Z"/>
|
||||
<filter id="day22-a" width="128.1%" height="136.1%" x="-14%" y="-12.9%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 13.685 12.69)">
|
||||
<use fill="#000" filter="url(#day22-a)" xlink:href="#day22-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day22-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day22-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
15
frame/item/resources/day23.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<path id="day23-b" d="M12.3948168,22.3798828 L12.3948168,19.6245117 L5.05155508,19.6245117 L11.2346605,11.8725586 C12.008098,10.8881836 12.3948168,9.76318359 12.3948168,8.49755859 C12.3772387,6.91552734 11.8455004,5.61035156 10.799602,4.58203125 C9.77128164,3.54492188 8.43094961,3.01757812 6.77860586,3 C5.30204336,3.01757812 4.05839102,3.53613281 3.04764883,4.55566406 C2.0456957,5.6015625 1.50956289,6.92431641 1.43925039,8.52392578 L4.18143789,8.52392578 C4.27811758,7.64501953 4.58573477,6.96386719 5.10428945,6.48046875 C5.60526602,5.99707031 6.23368399,5.75537109 6.98954336,5.75537109 C7.84208242,5.77294922 8.50126211,6.04980469 8.96708242,6.5859375 C9.41532461,7.12207031 9.6394457,7.75048828 9.6394457,8.47119141 C9.6394457,8.74365234 9.60428945,9.03369141 9.53397695,9.34130859 C9.4285082,9.66650391 9.2307543,10.0180664 8.94071524,10.3959961 L1.43925039,19.7827148 L1.43925039,22.3798828 L12.3948168,22.3798828 Z M20.3293871,22.5380859 C22.0256762,22.5205078 23.414348,21.9799805 24.4954027,20.9165039 C25.5940355,19.8793945 26.152141,18.4599609 26.1697191,16.6582031 C26.1697191,15.8496094 25.9983324,15.0761719 25.655559,14.3378906 C25.2952074,13.5996094 24.7107348,12.9667969 23.902141,12.4394531 C24.6931566,11.9033203 25.242473,11.2924805 25.5500902,10.6069336 C25.8137621,9.92138672 25.945598,9.20947266 25.945598,8.47119141 C25.9280199,7.01220703 25.4270434,5.74658203 24.4426684,4.67431641 C23.414348,3.57568359 22.0256762,3.01757812 20.2766527,3 C18.8967699,3.01757812 17.7102465,3.50976562 16.7170824,4.4765625 C15.7063402,5.45214844 15.1306566,6.65185547 14.9900316,8.07568359 L17.7454027,8.07568359 C17.921184,7.28466797 18.2639574,6.70019531 18.773723,6.32226562 C19.2571215,5.94433594 19.7932543,5.75537109 20.3821215,5.75537109 C21.1995043,5.77294922 21.867473,6.03222656 22.3860277,6.53320312 C22.9045824,7.05175781 23.1726488,7.71533203 23.190227,8.52392578 C23.190227,9.32373047 22.9309496,9.97412109 22.4123949,10.4750977 C21.8938402,10.9936523 21.164348,11.2529297 20.2239184,11.2529297 L19.2746996,11.2529297 L19.2746996,13.6918945 L20.4348559,13.6918945 C21.2873949,13.6918945 21.9905199,13.9511719 22.5442309,14.4697266 C23.1067309,15.0058594 23.3967699,15.7617187 23.414348,16.7373047 C23.3967699,17.6953125 23.1067309,18.4335938 22.5442309,18.9521484 C21.9905199,19.5058594 21.3093676,19.7827148 20.5007738,19.7827148 C19.7449145,19.7827148 19.1384691,19.5761719 18.6814379,19.1630859 C18.2331957,18.7675781 17.8860277,18.2490234 17.639934,17.6074219 L14.8845629,17.6074219 C15.183391,19.2070312 15.8381762,20.4287109 16.8489184,21.2724609 C17.8596605,22.1162109 19.0198168,22.5380859 20.3293871,22.5380859 Z"/>
|
||||
<filter id="day23-a" width="128.3%" height="135.8%" x="-14.2%" y="-12.8%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 13.804 12.769)">
|
||||
<use fill="#000" filter="url(#day23-a)" xlink:href="#day23-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day23-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day23-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.4 KiB |
15
frame/item/resources/day24.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<path id="day24-b" d="M12.188537,22.4034 L12.188537,19.6480289 L4.84527531,19.6480289 L11.0283808,11.8960758 C11.8018183,10.9117008 12.188537,9.78670078 12.188537,8.52107578 C12.1709589,6.93904453 11.6392206,5.63386875 10.5933222,4.60554843 C9.56500188,3.56843906 8.22466985,3.04109531 6.5723261,3.02351718 C5.0957636,3.04109531 3.85211125,3.55965 2.84136906,4.57918125 C1.83941594,5.62507968 1.30328313,6.94783359 1.23297063,8.54744296 L3.97515813,8.54744296 C4.07183781,7.66853671 4.379455,6.98738437 4.89800969,6.50398593 C5.39898625,6.0205875 6.02740422,5.77888828 6.7832636,5.77888828 C7.63580266,5.7964664 8.29498235,6.07332187 8.76080266,6.60945468 C9.20904485,7.1455875 9.43316594,7.77400546 9.43316594,8.49470859 C9.43316594,8.76716953 9.39800969,9.05720859 9.32769719,9.36482578 C9.22222844,9.69002109 9.02447453,10.0415836 8.73443547,10.4195133 L1.23297063,19.806232 L1.23297063,22.4034 L12.188537,22.4034 Z M25.0929297,22.1311708 L25.0929297,19.270331 L26.6222265,19.270331 L26.6222265,16.673163 L25.0929297,16.673163 L25.0929297,11.1492372 L22.3375586,11.1492372 L22.3375586,16.673163 L17.3146093,16.673163 L23.8141211,2.90949112 L20.7423437,2.90949112 L14.3219336,16.673163 L14.3219336,19.270331 L22.3375586,19.270331 L22.3375586,22.1311708 L25.0929297,22.1311708 Z"/>
|
||||
<filter id="day24-a" width="127.6%" height="135.9%" x="-13.8%" y="-12.8%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 13.928 12.656)">
|
||||
<use fill="#000" filter="url(#day24-a)" xlink:href="#day24-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day24-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day24-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
15
frame/item/resources/day25.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<path id="day25-b" d="M12.1932772,22.3798828 L12.1932772,19.6245117 L4.85001546,19.6245117 L11.0331209,11.8725586 C11.8065584,10.8881836 12.1932772,9.76318359 12.1932772,8.49755859 C12.1756991,6.91552734 11.6439608,5.61035156 10.5980623,4.58203125 C9.56974202,3.54492188 8.22940999,3.01757812 6.57706624,3 C5.10050374,3.01757812 3.8568514,3.53613281 2.84610921,4.55566406 C1.84415608,5.6015625 1.30802327,6.92431641 1.23771077,8.52392578 L3.97989827,8.52392578 C4.07657796,7.64501953 4.38419515,6.96386719 4.90274983,6.48046875 C5.4037264,5.99707031 6.03214436,5.75537109 6.78800374,5.75537109 C7.6405428,5.77294922 8.29972249,6.04980469 8.7655428,6.5859375 C9.21378499,7.12207031 9.43790608,7.75048828 9.43790608,8.47119141 C9.43790608,8.74365234 9.40274983,9.03369141 9.33243733,9.34130859 C9.22696858,9.66650391 9.02921468,10.0180664 8.73917561,10.3959961 L1.23771077,19.7827148 L1.23771077,22.3798828 L12.1932772,22.3798828 Z M20.9452303,22.5380859 C21.9120272,22.5205078 22.7469881,22.2963867 23.4501131,21.8657227 C24.1708162,21.4526367 24.7201326,20.9956055 25.0980623,20.4946289 C25.5287264,19.9848633 25.8363436,19.4003906 26.0209139,18.7412109 C26.1966951,18.0732422 26.2845858,17.1152344 26.2845858,15.8671875 C26.2845858,15.0585938 26.2582186,14.3774414 26.2054842,13.8237305 C26.1527498,13.2788086 26.0648592,12.8173828 25.9418123,12.4394531 C25.7045076,11.7451172 25.3177889,11.1342773 24.7816561,10.6069336 C24.4213045,10.2114258 23.9510897,9.87744141 23.3710116,9.60498047 C22.7557772,9.35888672 22.0790194,9.22705078 21.3407381,9.20947266 C20.1893709,9.20947266 19.1654451,9.56103516 18.2689608,10.2641602 L18.2689608,5.91357422 L25.9154451,5.91357422 L25.9154451,3.15820312 L15.6717928,3.15820312 L15.6717928,13.546875 L18.2689608,13.546875 C18.5941561,12.9580078 18.9632967,12.5449219 19.3763826,12.3076172 C19.7894686,12.0791016 20.2464998,11.9648438 20.7474764,11.9648438 C21.3099764,11.9648438 21.7801912,12.0439453 22.1581209,12.2021484 C22.5360506,12.3955078 22.8216951,12.6547852 23.0150545,12.9799805 C23.3754061,13.6655273 23.5467928,14.5576172 23.5292147,15.65625 C23.5292147,16.1044922 23.5204256,16.565918 23.5028475,17.0405273 C23.4676912,17.5239258 23.3710116,17.972168 23.2128084,18.3852539 C23.0633944,18.7983398 22.7997225,19.1323242 22.4217928,19.387207 C22.026285,19.6508789 21.4989412,19.7827148 20.8397616,19.7827148 C19.3016756,19.7651367 18.3832186,19.0180664 18.0843905,17.5415039 L15.3290194,17.5415039 C15.5926912,19.3081055 16.2738436,20.5869141 17.3724764,21.3779297 C18.4535311,22.1513672 19.6444491,22.5380859 20.9452303,22.5380859 Z"/>
|
||||
<filter id="day25-a" width="127.9%" height="135.8%" x="-14%" y="-12.8%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 13.761 12.769)">
|
||||
<use fill="#000" filter="url(#day25-a)" xlink:href="#day25-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day25-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day25-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
15
frame/item/resources/day26.svg
Normal file
After Width: | Height: | Size: 5.8 KiB |
15
frame/item/resources/day27.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<path id="day27-b" d="M12.1805363,22.3798828 L12.1805363,19.6245117 L4.83727457,19.6245117 L11.02038,11.8725586 C11.7938175,10.8881836 12.1805363,9.76318359 12.1805363,8.49755859 C12.1629582,6.91552734 11.6312199,5.61035156 10.5853214,4.58203125 C9.55700114,3.54492188 8.2166691,3.01757812 6.56432535,3 C5.08776285,3.01757812 3.84411051,3.53613281 2.83336832,4.55566406 C1.8314152,5.6015625 1.29528239,6.92431641 1.22496989,8.52392578 L3.96715739,8.52392578 C4.06383707,7.64501953 4.37145426,6.96386719 4.89000895,6.48046875 C5.39098551,5.99707031 6.01940348,5.75537109 6.77526285,5.75537109 C7.62780192,5.77294922 8.2869816,6.04980469 8.75280192,6.5859375 C9.2010441,7.12207031 9.4251652,7.75048828 9.4251652,8.47119141 C9.4251652,8.74365234 9.39000895,9.03369141 9.31969645,9.34130859 C9.2142277,9.66650391 9.01647379,10.0180664 8.72643473,10.3959961 L1.22496989,19.7827148 L1.22496989,22.3798828 L12.1805363,22.3798828 Z M20.1151066,22.3798828 L26.6278019,5.91357422 L26.6278019,3.15820312 L15.6854191,3.15820312 L15.6854191,8.6953125 L18.4407902,8.6953125 L18.4407902,5.91357422 L23.542841,5.91357422 L17.0433293,22.3798828 L20.1151066,22.3798828 Z"/>
|
||||
<filter id="day27-a" width="127.6%" height="136.1%" x="-13.8%" y="-12.9%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 13.926 12.69)">
|
||||
<use fill="#000" filter="url(#day27-a)" xlink:href="#day27-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day27-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day27-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
15
frame/item/resources/day28.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<path id="day28-b" d="M12.1914168,22.3798828 L12.1914168,19.6245117 L4.84815508,19.6245117 L11.0312606,11.8725586 C11.8046981,10.8881836 12.1914168,9.76318359 12.1914168,8.49755859 C12.1738387,6.91552734 11.6421004,5.61035156 10.596202,4.58203125 C9.56788164,3.54492188 8.22754961,3.01757812 6.57520586,3 C5.09864336,3.01757812 3.85499102,3.53613281 2.84424883,4.55566406 C1.84229571,5.6015625 1.30616289,6.92431641 1.23585039,8.52392578 L3.97803789,8.52392578 C4.07471758,7.64501953 4.38233477,6.96386719 4.90088946,6.48046875 C5.40186602,5.99707031 6.03028399,5.75537109 6.78614336,5.75537109 C7.63868243,5.77294922 8.29786211,6.04980469 8.76368243,6.5859375 C9.21192461,7.12207031 9.43604571,7.75048828 9.43604571,8.47119141 C9.43604571,8.74365234 9.40088946,9.03369141 9.33057696,9.34130859 C9.22510821,9.66650391 9.0273543,10.0180664 8.73731524,10.3959961 L1.23585039,19.7827148 L1.23585039,22.3798828 L12.1914168,22.3798828 Z M20.7983504,22.5380859 C22.4419051,22.5205078 23.830577,21.9799805 24.964366,20.9165039 C26.080577,19.8793945 26.6474715,18.4951172 26.6650496,16.7636719 C26.6474715,14.9091797 25.8916121,13.4677734 24.3974715,12.4394531 C24.9687606,11.9384766 25.4345809,11.362793 25.7949324,10.7124023 C26.1377059,10.105957 26.3090926,9.38525391 26.3090926,8.55029297 C26.2915145,6.95068359 25.7685652,5.62792969 24.7402449,4.58203125 C23.7207137,3.54492188 22.4067488,3.01757812 20.7983504,3 C19.2163191,3.01757812 17.924327,3.54492188 16.9223738,4.58203125 C15.8588973,5.62792969 15.3183699,6.95068359 15.3007918,8.55029297 C15.3007918,9.38525391 15.4897566,10.105957 15.8676863,10.7124023 C16.1928816,11.362793 16.6411238,11.9384766 17.2124129,12.4394531 C15.7182723,13.4677734 14.9624129,14.9091797 14.9448348,16.7636719 C14.9624129,18.4951172 15.5468856,19.8793945 16.6982527,20.9165039 C17.7968856,21.9799805 19.1635848,22.5205078 20.7983504,22.5380859 Z M20.7983504,11.2529297 C20.0864363,11.2529297 19.4580184,11.0112305 18.9130965,10.527832 C18.3593856,10.0620117 18.073741,9.38525391 18.0561629,8.49755859 C18.073741,7.58349609 18.3593856,6.89355469 18.9130965,6.42773438 C19.4580184,5.97949219 20.0864363,5.75537109 20.7983504,5.75537109 C21.5366316,5.75537109 22.1782332,5.97949219 22.7231551,6.42773438 C23.2592879,6.89355469 23.5361434,7.58349609 23.5537215,8.49755859 C23.5361434,9.38525391 23.2592879,10.0620117 22.7231551,10.527832 C22.1782332,11.0112305 21.5366316,11.2529297 20.7983504,11.2529297 Z M20.7983504,19.7827148 C19.9546004,19.7827148 19.2382918,19.4882812 18.6494246,18.8994141 C18.0341902,18.3369141 17.717784,17.6162109 17.7002059,16.7373047 C17.717784,15.8408203 18.0341902,15.1113281 18.6494246,14.5488281 C19.2382918,13.9951172 19.9546004,13.7094727 20.7983504,13.6918945 C21.6684676,13.7094727 22.3979598,13.9951172 22.986827,14.5488281 C23.5844832,15.1113281 23.8921004,15.8408203 23.9096785,16.7373047 C23.8921004,17.6162109 23.5844832,18.3369141 22.986827,18.8994141 C22.3979598,19.4882812 21.6684676,19.7827148 20.7983504,19.7827148 Z"/>
|
||||
<filter id="day28-a" width="127.5%" height="135.8%" x="-13.8%" y="-12.8%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 13.95 12.769)">
|
||||
<use fill="#000" filter="url(#day28-a)" xlink:href="#day28-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day28-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day28-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.7 KiB |
15
frame/item/resources/day29.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<path id="day29-b" d="M12.9555664,22.3798828 L12.9555664,19.6245117 L5.61230469,19.6245117 L11.7954102,11.8725586 C12.5688477,10.8881836 12.9555664,9.76318359 12.9555664,8.49755859 C12.9379883,6.91552734 12.40625,5.61035156 11.3603516,4.58203125 C10.3320313,3.54492188 8.99169922,3.01757812 7.33935547,3 C5.86279297,3.01757812 4.61914063,3.53613281 3.60839844,4.55566406 C2.60644531,5.6015625 2.0703125,6.92431641 2,8.52392578 L4.7421875,8.52392578 C4.83886719,7.64501953 5.14648438,6.96386719 5.66503906,6.48046875 C6.16601563,5.99707031 6.79443359,5.75537109 7.55029297,5.75537109 C8.40283203,5.77294922 9.06201172,6.04980469 9.52783203,6.5859375 C9.97607422,7.12207031 10.2001953,7.75048828 10.2001953,8.47119141 C10.2001953,8.74365234 10.1650391,9.03369141 10.0947266,9.34130859 C9.98925781,9.66650391 9.79150391,10.0180664 9.50146484,10.3959961 L2,19.7827148 L2,22.3798828 L12.9555664,22.3798828 Z M21.0878906,22.3798828 C21.9228516,20.6923828 22.6787109,19.1630859 23.3554688,17.7919922 C23.6455078,17.2119141 23.9289551,16.6340332 24.2058105,16.0583496 C24.482666,15.482666 24.7375488,14.9597168 24.970459,14.489502 C25.2033691,14.0192871 25.3967285,13.621582 25.5505371,13.2963867 C25.7043457,12.9711914 25.7988281,12.7602539 25.8339844,12.6635742 C25.9746094,12.3120117 26.0976563,11.9868164 26.203125,11.6879883 C26.3085938,11.3891602 26.4030762,11.0859375 26.4865723,10.7783203 C26.5700684,10.4707031 26.6425781,10.1477051 26.7041016,9.80932617 C26.765625,9.47094727 26.8227539,9.08642578 26.8754883,8.65576172 C26.9106445,8.36572266 26.9018555,8.01635742 26.8491211,7.60766602 C26.7963867,7.19897461 26.6887207,6.77709961 26.526123,6.34204102 C26.3635254,5.90698242 26.137207,5.47851562 25.847168,5.05664062 C25.5571289,4.63476562 25.1923828,4.265625 24.7529297,3.94921875 C24.3134766,3.6328125 23.7883301,3.39111328 23.1774902,3.22412109 C22.5666504,3.05712891 21.8613281,3.00878906 21.0615234,3.07910156 C20.296875,3.14941406 19.635498,3.31201172 19.0773926,3.56689453 C18.5192871,3.82177734 18.0490723,4.125 17.666748,4.4765625 C17.2844238,4.828125 16.9746094,5.20385742 16.7373047,5.60375977 C16.5,6.00366211 16.3154297,6.37939453 16.1835938,6.73095703 C16.0517578,7.08251953 15.9616699,7.38354492 15.9133301,7.6340332 C15.8649902,7.88452148 15.8364258,8.04052734 15.8276367,8.10205078 C15.8100586,8.22509766 15.7990723,8.37451172 15.7946777,8.55029297 C15.7902832,8.72607422 15.7880859,8.8996582 15.7880859,9.07104492 C15.7880859,9.24243164 15.7902832,9.3984375 15.7946777,9.5390625 C15.7990723,9.6796875 15.8012695,9.77636719 15.8012695,9.82910156 C15.8012695,9.99609375 15.829834,10.2268066 15.8869629,10.5212402 C15.9440918,10.8156738 16.036377,11.1320801 16.1638184,11.470459 C16.2912598,11.8088379 16.4604492,12.1560059 16.6713867,12.5119629 C16.8823242,12.8679199 17.1459961,13.190918 17.4624023,13.480957 C17.7788086,13.7709961 18.154541,14.0126953 18.5895996,14.2060547 C19.0246582,14.3994141 19.5322266,14.5048828 20.1123047,14.5224609 C20.5341797,14.5400391 20.9055176,14.5334473 21.2263184,14.5026855 C21.5471191,14.4719238 21.8349609,14.3818359 22.0898438,14.2324219 C21.9228516,14.5224609 21.7053223,14.9223633 21.4372559,15.4321289 C21.1691895,15.9418945 20.8813477,16.5 20.5737305,17.1064453 C20.2661133,17.7128906 19.9541016,18.328125 19.6376953,18.9521484 C19.3212891,19.5761719 19.0356445,20.1430664 18.7807617,20.652832 C18.5258789,21.1625977 18.3193359,21.5778809 18.1611328,21.8986816 C18.0029297,22.2194824 17.9282227,22.3798828 17.9370117,22.3798828 L17.9370117,22.3798828 L21.0878906,22.3798828 Z M21.4559766,12.1396582 L21.2592773,12.1362305 C20.5913086,12.1010742 20.0727539,11.9538574 19.7036133,11.6945801 C19.3344727,11.4353027 19.064209,11.123291 18.8928223,10.7585449 C18.7214355,10.3937988 18.6181641,10.0048828 18.5830078,9.59179688 C18.5478516,9.17871094 18.5302734,8.80078125 18.5302734,8.45800781 C18.5302734,8.35253906 18.5698242,8.15917969 18.6489258,7.87792969 C18.7280273,7.59667969 18.8686523,7.30664062 19.0708008,7.0078125 C19.2729492,6.70898438 19.5476074,6.43652344 19.8947754,6.19042969 C20.2419434,5.94433594 20.6879883,5.80810547 21.2329102,5.78173828 C21.7250977,5.75537109 22.1359863,5.79711914 22.4655762,5.90698242 C22.795166,6.0168457 23.0654297,6.16845703 23.2763672,6.36181641 C23.4873047,6.55517578 23.6499023,6.78149414 23.7641602,7.04077148 C23.878418,7.30004883 23.9597168,7.5703125 24.0080566,7.8515625 C24.0563965,8.1328125 24.0827637,8.40966797 24.0871582,8.68212891 C24.0915527,8.95458984 24.0981445,9.20068359 24.1069336,9.42041016 C24.1069336,9.52587891 24.0849609,9.66650391 24.0410156,9.84228516 C23.9970703,10.0180664 23.9245605,10.2092285 23.8234863,10.4157715 C23.7224121,10.6223145 23.5949707,10.8310547 23.4411621,11.0419922 C23.2873535,11.2529297 23.1049805,11.4418945 22.894043,11.6088867 C22.6831055,11.7758789 22.4414063,11.9099121 22.1689453,12.0109863 C21.8964844,12.1120605 21.5932617,12.1538086 21.2592773,12.1362305 L21.4559766,12.1396582 Z"/>
|
||||
<filter id="day29-a" width="128.1%" height="136.1%" x="-14.1%" y="-12.9%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 14.448 12.69)">
|
||||
<use fill="#000" filter="url(#day29-a)" xlink:href="#day29-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day29-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day29-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.6 KiB |
15
frame/item/resources/day3.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<path id="day3-b" d="M13.4448242,22.5380859 C15.1411133,22.5205078 16.5297852,21.9799805 17.6108398,20.9165039 C18.7094727,19.8793945 19.2675781,18.4599609 19.2851562,16.6582031 C19.2851562,15.8496094 19.1137695,15.0761719 18.7709961,14.3378906 C18.4106445,13.5996094 17.8261719,12.9667969 17.0175781,12.4394531 C17.8085938,11.9033203 18.3579102,11.2924805 18.6655273,10.6069336 C18.9291992,9.92138672 19.0610352,9.20947266 19.0610352,8.47119141 C19.043457,7.01220703 18.5424805,5.74658203 17.5581055,4.67431641 C16.5297852,3.57568359 15.1411133,3.01757812 13.3920898,3 C12.012207,3.01757812 10.8256836,3.50976562 9.83251953,4.4765625 C8.82177734,5.45214844 8.24609375,6.65185547 8.10546875,8.07568359 L10.8608398,8.07568359 C11.0366211,7.28466797 11.3793945,6.70019531 11.8891602,6.32226562 C12.3725586,5.94433594 12.9086914,5.75537109 13.4975586,5.75537109 C14.3149414,5.77294922 14.9829102,6.03222656 15.5014648,6.53320312 C16.0200195,7.05175781 16.2880859,7.71533203 16.3056641,8.52392578 C16.3056641,9.32373047 16.0463867,9.97412109 15.527832,10.4750977 C15.0092773,10.9936523 14.2797852,11.2529297 13.3393555,11.2529297 L12.3901367,11.2529297 L12.3901367,13.6918945 L13.550293,13.6918945 C14.402832,13.6918945 15.105957,13.9511719 15.659668,14.4697266 C16.222168,15.0058594 16.512207,15.7617187 16.5297852,16.7373047 C16.512207,17.6953125 16.222168,18.4335938 15.659668,18.9521484 C15.105957,19.5058594 14.4248047,19.7827148 13.6162109,19.7827148 C12.8603516,19.7827148 12.2539062,19.5761719 11.796875,19.1630859 C11.3486328,18.7675781 11.0014648,18.2490234 10.7553711,17.6074219 L8,17.6074219 C8.29882812,19.2070312 8.95361328,20.4287109 9.96435547,21.2724609 C10.9750977,22.1162109 12.1352539,22.5380859 13.4448242,22.5380859 Z"/>
|
||||
<filter id="day3-a" width="162%" height="135.8%" x="-31%" y="-12.8%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 13.643 12.769)">
|
||||
<use fill="#000" filter="url(#day3-a)" xlink:href="#day3-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day3-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day3-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
15
frame/item/resources/day30.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<path id="day30-b" d="M6.68016141,23.1582031 C8.37645047,23.140625 9.76512234,22.6000977 10.846177,21.5366211 C11.9448098,20.4995117 12.5029153,19.0800781 12.5204934,17.2783203 C12.5204934,16.4697266 12.3491067,15.6962891 12.0063333,14.9580078 C11.6459817,14.2197266 11.0615091,13.5869141 10.2529153,13.0595703 C11.0439309,12.5234375 11.5932473,11.9125977 11.9008645,11.2270508 C12.1645364,10.5415039 12.2963723,9.82958984 12.2963723,9.09130859 C12.2787942,7.63232422 11.7778177,6.36669922 10.7934427,5.29443359 C9.76512234,4.19580078 8.37645047,3.63769531 6.62742703,3.62011719 C5.24754422,3.63769531 4.06102078,4.12988281 3.06785672,5.09667969 C2.05711453,6.07226562 1.48143094,7.27197266 1.34080594,8.69580078 L4.09617703,8.69580078 C4.27195828,7.90478516 4.61473172,7.3203125 5.12449734,6.94238281 C5.60789578,6.56445312 6.14402859,6.37548828 6.73289578,6.37548828 C7.55027859,6.39306641 8.21824734,6.65234375 8.73680203,7.15332031 C9.25535672,7.671875 9.52342312,8.33544922 9.54100125,9.14404297 C9.54100125,9.94384766 9.28172391,10.5942383 8.76316922,11.0952148 C8.24461453,11.6137695 7.51512234,11.8730469 6.57469266,11.8730469 L5.62547391,11.8730469 L5.62547391,14.3120117 L6.78563016,14.3120117 C7.63816922,14.3120117 8.34129422,14.5712891 8.89500516,15.0898438 C9.45750516,15.6259766 9.74754422,16.3818359 9.76512234,17.3574219 C9.74754422,18.3154297 9.45750516,19.0537109 8.89500516,19.5722656 C8.34129422,20.1259766 7.66014187,20.402832 6.85154812,20.402832 C6.09568875,20.402832 5.48924344,20.1962891 5.03221219,19.7832031 C4.58397,19.3876953 4.23680203,18.8691406 3.99070828,18.2275391 L1.23533719,18.2275391 C1.53416531,19.8271484 2.18895047,21.0488281 3.19969266,21.8925781 C4.21043484,22.7363281 5.37059109,23.1582031 6.68016141,23.1582031 Z M21.3119973,23.1582031 C22.806138,23.140625 24.0761575,22.6572266 25.1220559,21.7080078 C26.1855325,20.75 26.7348489,19.3876953 26.7700052,17.6210938 L26.7700052,9.14404297 C26.7348489,7.36865234 26.1855325,6.00195312 25.1220559,5.04394531 C24.0761575,4.09472656 22.806138,3.62011719 21.3119973,3.62011719 C19.861802,3.62011719 18.6137552,4.09472656 17.5678567,5.04394531 C16.4516458,6.00195312 15.8847512,7.36865234 15.8671731,9.14404297 L15.8671731,17.6210938 C15.8847512,19.3876953 16.4516458,20.75 17.5678567,21.7080078 C18.6137552,22.6572266 19.861802,23.140625 21.3119973,23.1582031 Z M21.3119973,20.402832 C19.5541848,20.3852539 18.6577005,19.4052734 18.6225442,17.4628906 L18.6225442,9.31542969 C18.6577005,7.390625 19.5541848,6.41064453 21.3119973,6.37548828 C23.0610208,6.41064453 23.9618997,7.390625 24.0146341,9.31542969 L24.0146341,17.4628906 C23.9618997,19.4052734 23.0610208,20.3852539 21.3119973,20.402832 Z"/>
|
||||
<filter id="day30-a" width="127.4%" height="135.8%" x="-13.7%" y="-12.8%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 14.003 13.39)">
|
||||
<use fill="#000" filter="url(#day30-a)" xlink:href="#day30-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day30-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day30-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.4 KiB |
15
frame/item/resources/day31.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<path id="day31-b" d="M8.44482422,22.5380859 C10.1411133,22.5205078 11.5297852,21.9799805 12.6108398,20.9165039 C13.7094727,19.8793945 14.2675781,18.4599609 14.2851562,16.6582031 C14.2851562,15.8496094 14.1137695,15.0761719 13.7709961,14.3378906 C13.4106445,13.5996094 12.8261719,12.9667969 12.0175781,12.4394531 C12.8085938,11.9033203 13.3579102,11.2924805 13.6655273,10.6069336 C13.9291992,9.92138672 14.0610352,9.20947266 14.0610352,8.47119141 C14.043457,7.01220703 13.5424805,5.74658203 12.5581055,4.67431641 C11.5297852,3.57568359 10.1411133,3.01757812 8.39208984,3 C7.01220703,3.01757812 5.82568359,3.50976562 4.83251953,4.4765625 C3.82177734,5.45214844 3.24609375,6.65185547 3.10546875,8.07568359 L5.86083984,8.07568359 C6.03662109,7.28466797 6.37939453,6.70019531 6.88916016,6.32226562 C7.37255859,5.94433594 7.90869141,5.75537109 8.49755859,5.75537109 C9.31494141,5.77294922 9.98291016,6.03222656 10.5014648,6.53320312 C11.0200195,7.05175781 11.2880859,7.71533203 11.3056641,8.52392578 C11.3056641,9.32373047 11.0463867,9.97412109 10.527832,10.4750977 C10.0092773,10.9936523 9.27978516,11.2529297 8.33935547,11.2529297 L7.39013672,11.2529297 L7.39013672,13.6918945 L8.55029297,13.6918945 C9.40283203,13.6918945 10.105957,13.9511719 10.659668,14.4697266 C11.222168,15.0058594 11.512207,15.7617187 11.5297852,16.7373047 C11.512207,17.6953125 11.222168,18.4335938 10.659668,18.9521484 C10.105957,19.5058594 9.42480469,19.7827148 8.61621094,19.7827148 C7.86035156,19.7827148 7.25390625,19.5761719 6.796875,19.1630859 C6.34863281,18.7675781 6.00146484,18.2490234 5.75537109,17.6074219 L3,17.6074219 C3.29882812,19.2070312 3.95361328,20.4287109 4.96435547,21.2724609 C5.97509766,22.1162109 7.13525391,22.5380859 8.44482422,22.5380859 Z M24.5927734,22.3798828 L24.5927734,3.15820312 L21.8374023,3.15820312 L19.1083984,5.14892578 L19.1083984,8.07568359 L21.8374023,6.07177734 L21.8374023,22.3798828 L24.5927734,22.3798828 Z"/>
|
||||
<filter id="day31-a" width="132.4%" height="135.8%" x="-16.2%" y="-12.8%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 13.796 12.769)">
|
||||
<use fill="#000" filter="url(#day31-a)" xlink:href="#day31-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day31-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day31-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.7 KiB |
15
frame/item/resources/day4.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<polygon id="day4-b" points="18.771 22.222 18.771 19.361 20.3 19.361 20.3 16.764 18.771 16.764 18.771 11.24 16.016 11.24 16.016 16.764 10.993 16.764 17.492 3 14.42 3 8 16.764 8 19.361 16.016 19.361 16.016 22.222"/>
|
||||
<filter id="day4-a" width="156.9%" height="136.4%" x="-28.5%" y="-13%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 14.15 12.61)">
|
||||
<use fill="#000" filter="url(#day4-a)" xlink:href="#day4-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day4-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day4-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
15
frame/item/resources/day5.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<path id="day5-b" d="M14.6162109,22.3798828 C15.5830078,22.3623047 16.4179688,22.1381836 17.1210938,21.7075195 C17.8417969,21.2944336 18.3911133,20.8374023 18.769043,20.3364258 C19.199707,19.8266602 19.5073242,19.2421875 19.6918945,18.5830078 C19.8676758,17.9150391 19.9555664,16.9570312 19.9555664,15.7089844 C19.9555664,14.9003906 19.9291992,14.2192383 19.8764648,13.6655273 C19.8237305,13.1206055 19.7358398,12.6591797 19.612793,12.28125 C19.3754883,11.5869141 18.9887695,10.9760742 18.4526367,10.4487305 C18.0922852,10.0532227 17.6220703,9.71923828 17.0419922,9.44677734 C16.4267578,9.20068359 15.75,9.06884766 15.0117188,9.05126953 C13.8603516,9.05126953 12.8364258,9.40283203 11.9399414,10.105957 L11.9399414,5.75537109 L19.5864258,5.75537109 L19.5864258,3 L9.34277344,3 L9.34277344,13.3886719 L11.9399414,13.3886719 C12.2651367,12.7998047 12.6342773,12.3867188 13.0473633,12.1494141 C13.4604492,11.9208984 13.9174805,11.8066406 14.418457,11.8066406 C14.980957,11.8066406 15.4511719,11.8857422 15.8291016,12.0439453 C16.2070312,12.2373047 16.4926758,12.496582 16.6860352,12.8217773 C17.0463867,13.5073242 17.2177734,14.3994141 17.2001953,15.4980469 C17.2001953,15.9462891 17.1914062,16.4077148 17.1738281,16.8823242 C17.1386719,17.3657227 17.0419922,17.8139648 16.8837891,18.2270508 C16.734375,18.6401367 16.4707031,18.9741211 16.0927734,19.2290039 C15.6972656,19.4926758 15.1699219,19.6245117 14.5107422,19.6245117 C12.9726562,19.6069336 12.0541992,18.8598633 11.7553711,17.3833008 L9,17.3833008 C9.26367188,19.1499023 9.94482422,20.4287109 11.043457,21.2197266 C12.1245117,21.9931641 13.3154297,22.3798828 14.6162109,22.3798828 Z"/>
|
||||
<filter id="day5-a" width="163.9%" height="136.1%" x="-31.9%" y="-12.9%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 14.478 12.69)">
|
||||
<use fill="#000" filter="url(#day5-a)" xlink:href="#day5-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day5-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day5-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.4 KiB |
15
frame/item/resources/day6.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<path id="day6-b" d="M11.8169643,22.40625 C12.4321987,22.5820312 13.1397182,22.6347656 13.9395229,22.5644531 C14.7041713,22.5029297 15.363351,22.340332 15.9170619,22.0766602 C16.4707729,21.8129883 16.9409877,21.4987793 17.3277065,21.1340332 C17.7144252,20.7692871 18.0264369,20.3825684 18.2637416,19.973877 C18.5010463,19.5651855 18.6834194,19.1828613 18.8108608,18.8269043 C18.9383022,18.4709473 19.0261928,18.1633301 19.0745326,17.9040527 C19.1228725,17.6447754 19.1514369,17.484375 19.160226,17.4228516 C19.1690151,17.2998047 19.1756069,17.1503906 19.1800014,16.9746094 C19.1843959,16.7988281 19.1865932,16.6252441 19.1865932,16.4538574 L19.1865932,16.4538574 L19.1865932,15.6958008 C19.1865932,15.5288086 19.1624233,15.2980957 19.1140834,15.0036621 C19.0657436,14.7092285 18.9800502,14.3928223 18.8570033,14.0544434 C18.7339565,13.7160645 18.564767,13.3688965 18.349435,13.0129395 C18.134103,12.6569824 17.8638393,12.3339844 17.538644,12.0439453 C17.2134487,11.7539062 16.8245326,11.512207 16.3718959,11.3188477 C15.9192592,11.1254883 15.3897182,11.0200195 14.7832729,11.0024414 C14.3613979,10.9848633 13.99006,10.9914551 13.6692592,11.0222168 C13.3484584,11.0529785 13.0606166,11.1430664 12.8057338,11.2924805 C12.9287807,11.081543 13.0825893,10.800293 13.2671596,10.4487305 C13.4517299,10.097168 13.6560756,9.70605469 13.8801967,9.27539062 C14.1043178,8.84472656 14.337228,8.39208984 14.5789272,7.91748047 C14.8206264,7.44287109 15.0579311,6.97265625 15.2908412,6.50683594 C15.5237514,6.04101562 15.7456752,5.59716797 15.9566127,5.17529297 C16.1675502,4.75341797 16.3521205,4.37988281 16.5103237,4.0546875 C16.6685268,3.72949219 16.7937709,3.47241211 16.8860561,3.28344727 C16.9783412,3.09448242 17.0200893,3 17.0113002,3 L17.0113002,3 L13.8999721,3 C13.047433,4.71386719 12.2783901,6.26513672 11.5928432,7.65380859 C11.3028041,8.25146484 11.0127651,8.84033203 10.722726,9.42041016 C10.4326869,10.0004883 10.1712123,10.5322266 9.93830218,11.015625 C9.70539202,11.4990234 9.50983538,11.9055176 9.35163225,12.2351074 C9.19342913,12.5646973 9.09674944,12.7734375 9.06159319,12.8613281 C8.92096819,13.2128906 8.79792132,13.5380859 8.69245257,13.8369141 C8.58698382,14.1357422 8.4925014,14.4389648 8.4090053,14.746582 C8.32550921,15.0541992 8.25299944,15.3771973 8.191476,15.7155762 C8.12995257,16.0539551 8.07282366,16.4384766 8.02008929,16.8691406 C7.98493304,17.1591797 7.99591936,17.5107422 8.05304827,17.9238281 C8.11017718,18.3369141 8.22443499,18.7675781 8.39582171,19.2158203 C8.56720843,19.6640625 8.80231585,20.1013184 9.10114397,20.5275879 C9.3999721,20.9538574 9.77350725,21.3295898 10.2217494,21.6547852 C10.6699916,21.9799805 11.2017299,22.2304687 11.8169643,22.40625 Z M13.6626674,19.7431641 C13.1704799,19.7431641 12.7595912,19.6816406 12.4300014,19.5585937 C12.1004116,19.4355469 11.8301479,19.2773437 11.6192104,19.0839844 C11.4082729,18.890625 11.2456752,18.6687012 11.1314174,18.4182129 C11.0171596,18.1677246 10.9358608,17.9084473 10.8875209,17.6403809 C10.8391811,17.3723145 10.8106166,17.104248 10.8018276,16.8361816 C10.7930385,16.5681152 10.788644,16.3242187 10.788644,16.1044922 C10.788644,16.0078125 10.8106166,15.8693848 10.8545619,15.689209 C10.8985073,15.5090332 10.971017,15.3134766 11.0720912,15.1025391 C11.1731655,14.8916016 11.3006069,14.6784668 11.4544155,14.4631348 C11.6082241,14.2478027 11.7905971,14.0566406 12.0015346,13.8896484 C12.2124721,13.7226562 12.4541713,13.5908203 12.7266323,13.4941406 C12.9990932,13.3974609 13.3023158,13.3623047 13.6363002,13.3886719 C14.3482143,13.4414062 14.8975307,13.5996094 15.2842494,13.8632812 C15.6709682,14.1269531 15.9500209,14.4411621 16.1214076,14.8059082 C16.2927944,15.1706543 16.3916713,15.5551758 16.4180385,15.9594727 C16.4444057,16.3637695 16.4575893,16.7329102 16.4575893,17.0668945 C16.4575893,17.1459961 16.4444057,17.2668457 16.4180385,17.4294434 C16.3916713,17.592041 16.3411342,17.7744141 16.2664272,17.9765625 C16.1917201,18.1787109 16.0884487,18.3852539 15.9566127,18.5961914 C15.8247768,18.8071289 15.6555873,18.998291 15.4490444,19.1696777 C15.2425014,19.3410645 14.9920131,19.4816895 14.6975795,19.5915527 C14.4031459,19.701416 14.0581752,19.7519531 13.6626674,19.7431641 Z"/>
|
||||
<filter id="day6-a" width="162.6%" height="135.7%" x="-31.3%" y="-12.8%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 13.593 12.797)">
|
||||
<use fill="#000" filter="url(#day6-a)" xlink:href="#day6-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day6-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day6-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.9 KiB |
15
frame/item/resources/day7.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<polygon id="day7-b" points="13.43 22.222 19.942 5.755 19.942 3 9 3 9 8.537 11.755 8.537 11.755 5.755 16.857 5.755 10.358 22.222"/>
|
||||
<filter id="day7-a" width="164%" height="136.4%" x="-32%" y="-13%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 14.471 12.61)">
|
||||
<use fill="#000" filter="url(#day7-a)" xlink:href="#day7-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day7-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day7-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 938 B |
15
frame/item/resources/day8.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<path id="day8-b" d="M13.8535156,22.5380859 C15.4970703,22.5205078 16.8857422,21.9799805 18.0195312,20.9165039 C19.1357422,19.8793945 19.7026367,18.4951172 19.7202148,16.7636719 C19.7026367,14.9091797 18.9467773,13.4677734 17.4526367,12.4394531 C18.0239258,11.9384766 18.4897461,11.362793 18.8500977,10.7124023 C19.1928711,10.105957 19.3642578,9.38525391 19.3642578,8.55029297 C19.3466797,6.95068359 18.8237305,5.62792969 17.7954102,4.58203125 C16.7758789,3.54492188 15.4619141,3.01757812 13.8535156,3 C12.2714844,3.01757812 10.9794922,3.54492188 9.97753906,4.58203125 C8.9140625,5.62792969 8.37353516,6.95068359 8.35595703,8.55029297 C8.35595703,9.38525391 8.54492188,10.105957 8.92285156,10.7124023 C9.24804688,11.362793 9.69628906,11.9384766 10.2675781,12.4394531 C8.7734375,13.4677734 8.01757812,14.9091797 8,16.7636719 C8.01757812,18.4951172 8.60205078,19.8793945 9.75341797,20.9165039 C10.8520508,21.9799805 12.21875,22.5205078 13.8535156,22.5380859 Z M13.8535156,11.2529297 C13.1416016,11.2529297 12.5131836,11.0112305 11.9682617,10.527832 C11.4145508,10.0620117 11.1289062,9.38525391 11.1113281,8.49755859 C11.1289062,7.58349609 11.4145508,6.89355469 11.9682617,6.42773438 C12.5131836,5.97949219 13.1416016,5.75537109 13.8535156,5.75537109 C14.5917969,5.75537109 15.2333984,5.97949219 15.7783203,6.42773438 C16.3144531,6.89355469 16.5913086,7.58349609 16.6088867,8.49755859 C16.5913086,9.38525391 16.3144531,10.0620117 15.7783203,10.527832 C15.2333984,11.0112305 14.5917969,11.2529297 13.8535156,11.2529297 Z M13.8535156,19.7827148 C13.0097656,19.7827148 12.293457,19.4882812 11.7045898,18.8994141 C11.0893555,18.3369141 10.7729492,17.6162109 10.7553711,16.7373047 C10.7729492,15.8408203 11.0893555,15.1113281 11.7045898,14.5488281 C12.293457,13.9951172 13.0097656,13.7094727 13.8535156,13.6918945 C14.7236328,13.7094727 15.453125,13.9951172 16.0419922,14.5488281 C16.6396484,15.1113281 16.9472656,15.8408203 16.9648438,16.7373047 C16.9472656,17.6162109 16.6396484,18.3369141 16.0419922,18.8994141 C15.453125,19.4882812 14.7236328,19.7827148 13.8535156,19.7827148 Z"/>
|
||||
<filter id="day8-a" width="159.7%" height="135.8%" x="-29.9%" y="-12.8%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 13.86 12.769)">
|
||||
<use fill="#000" filter="url(#day8-a)" xlink:href="#day8-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day8-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day8-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.8 KiB |
15
frame/item/resources/day9.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="26" viewBox="0 0 28 26">
|
||||
<defs>
|
||||
<path id="day9-b" d="M13.2998047,22.3320312 C14.1347656,20.6445312 14.890625,19.1152344 15.5673828,17.7441406 C15.8574219,17.1640625 16.1408691,16.5861816 16.4177246,16.010498 C16.6945801,15.4348145 16.9494629,14.9118652 17.182373,14.4416504 C17.4152832,13.9714355 17.6086426,13.5737305 17.7624512,13.2485352 C17.9162598,12.9233398 18.0107422,12.7124023 18.0458984,12.6157227 C18.1865234,12.2641602 18.3095703,11.9389648 18.4150391,11.6401367 C18.5205078,11.3413086 18.6149902,11.0380859 18.6984863,10.7304688 C18.7819824,10.4228516 18.8544922,10.0998535 18.9160156,9.76147461 C18.9775391,9.4230957 19.034668,9.03857422 19.0874023,8.60791016 C19.1225586,8.31787109 19.1137695,7.96850586 19.0610352,7.55981445 C19.0083008,7.15112305 18.9006348,6.72924805 18.7380371,6.29418945 C18.5754395,5.85913086 18.3491211,5.43066406 18.059082,5.00878906 C17.769043,4.58691406 17.4042969,4.21777344 16.9648438,3.90136719 C16.5253906,3.58496094 16.0002441,3.34326172 15.3894043,3.17626953 C14.7785645,3.00927734 14.0732422,2.9609375 13.2734375,3.03125 C12.5087891,3.1015625 11.8474121,3.26416016 11.2893066,3.51904297 C10.7312012,3.77392578 10.2609863,4.07714844 9.87866211,4.42871094 C9.49633789,4.78027344 9.18652344,5.15600586 8.94921875,5.5559082 C8.71191406,5.95581055 8.52734375,6.33154297 8.39550781,6.68310547 C8.26367188,7.03466797 8.17358398,7.33569336 8.12524414,7.58618164 C8.0769043,7.83666992 8.04833984,7.99267578 8.03955078,8.05419922 C8.02197266,8.17724609 8.01098633,8.32666016 8.0065918,8.50244141 C8.00219727,8.67822266 8,8.85180664 8,9.02319336 C8,9.19458008 8.00219727,9.35058594 8.0065918,9.49121094 C8.01098633,9.63183594 8.01318359,9.72851562 8.01318359,9.78125 C8.01318359,9.94824219 8.04174805,10.1789551 8.09887695,10.4733887 C8.15600586,10.7678223 8.24829102,11.0842285 8.37573242,11.4226074 C8.50317383,11.7609863 8.67236328,12.1081543 8.88330078,12.4641113 C9.09423828,12.8200684 9.35791016,13.1430664 9.67431641,13.4331055 C9.99072266,13.7231445 10.3664551,13.9648438 10.8015137,14.1582031 C11.2365723,14.3515625 11.7441406,14.4570312 12.3242188,14.4746094 C12.7460938,14.4921875 13.1174316,14.4855957 13.4382324,14.454834 C13.7590332,14.4240723 14.046875,14.3339844 14.3017578,14.1845703 C14.1347656,14.4746094 13.9172363,14.8745117 13.6491699,15.3842773 C13.3811035,15.894043 13.0932617,16.4521484 12.7856445,17.0585938 C12.4780273,17.6650391 12.1660156,18.2802734 11.8496094,18.9042969 C11.5332031,19.5283203 11.2475586,20.0952148 10.9926758,20.6049805 C10.737793,21.1147461 10.53125,21.5300293 10.3730469,21.8508301 C10.2148438,22.1716309 10.1401367,22.3320312 10.1489258,22.3320312 L10.1489258,22.3320312 L13.2998047,22.3320312 Z M13.6678906,12.0918066 L13.4711914,12.0883789 C12.8032227,12.0532227 12.284668,11.9060059 11.9155273,11.6467285 C11.5463867,11.3874512 11.276123,11.0754395 11.1047363,10.7106934 C10.9333496,10.3459473 10.8300781,9.95703125 10.7949219,9.54394531 C10.7597656,9.13085938 10.7421875,8.75292969 10.7421875,8.41015625 C10.7421875,8.3046875 10.7817383,8.11132812 10.8608398,7.83007812 C10.9399414,7.54882812 11.0805664,7.25878906 11.2827148,6.95996094 C11.4848633,6.66113281 11.7595215,6.38867188 12.1066895,6.14257812 C12.4538574,5.89648438 12.8999023,5.76025391 13.4448242,5.73388672 C13.9370117,5.70751953 14.3479004,5.74926758 14.6774902,5.85913086 C15.0070801,5.96899414 15.2773438,6.12060547 15.4882813,6.31396484 C15.6992188,6.50732422 15.8618164,6.73364258 15.9760742,6.99291992 C16.090332,7.25219727 16.1716309,7.52246094 16.2199707,7.80371094 C16.2683105,8.08496094 16.2946777,8.36181641 16.2990723,8.63427734 C16.3034668,8.90673828 16.3100586,9.15283203 16.3188477,9.37255859 C16.3188477,9.47802734 16.296875,9.61865234 16.2529297,9.79443359 C16.2089844,9.97021484 16.1364746,10.161377 16.0354004,10.3679199 C15.9343262,10.5744629 15.8068848,10.7832031 15.6530762,10.9941406 C15.4992676,11.2050781 15.3168945,11.394043 15.105957,11.5610352 C14.8950195,11.7280273 14.6533203,11.8620605 14.3808594,11.9631348 C14.1083984,12.064209 13.8051758,12.105957 13.4711914,12.0883789 L13.6678906,12.0918066 Z"/>
|
||||
<filter id="day9-a" width="163%" height="136.2%" x="-31.5%" y="-12.9%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="1"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.000854821203 0 0 0 0 0.168099661 0 0 0 0 0.309386322 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" transform="rotate(-8 13.554 12.666)">
|
||||
<use fill="#000" filter="url(#day9-a)" xlink:href="#day9-b"/>
|
||||
<use fill="#000" fill-opacity=".7" xlink:href="#day9-b"/>
|
||||
<use fill="#2D394F" xlink:href="#day9-b"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.8 KiB |
3
frame/item/resources/month1.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="10" viewBox="0 0 20 10">
|
||||
<path fill="#E06164" d="M2.917,8.53005689 C4.267,8.53005689 4.843,7.57605689 4.843,6.38805689 L4.843,1.78905689 L3.799,1.78905689 L3.799,6.28905689 C3.799,7.26105689 3.466,7.62105689 2.8,7.62105689 C2.368,7.62105689 2.008,7.41405689 1.729,6.90105689 L1,7.43205689 C1.414,8.16105689 2.026,8.53005689 2.917,8.53005689 Z M7.242,8.41305689 L7.809,6.52305689 L10.113,6.52305689 L10.671,8.41305689 L11.778,8.41305689 L9.582,1.78905689 L8.376,1.78905689 L6.18,8.41305689 L7.242,8.41305689 Z M9.861,5.70405689 L8.052,5.70405689 L8.322,4.81305689 C8.538,4.09305689 8.745,3.36405689 8.934,2.60805689 L8.97,2.60805689 C9.177,3.35505689 9.375,4.09305689 9.6,4.81305689 L9.861,5.70405689 Z M14.141,8.41305689 L14.141,5.29005689 C14.141,4.57005689 14.06,3.80505689 14.006,3.12105689 L14.051,3.12105689 L14.744,4.50705689 L16.94,8.41305689 L18.011,8.41305689 L18.011,1.78905689 L17.021,1.78905689 L17.021,4.87605689 C17.021,5.59605689 17.102,6.39705689 17.156,7.08105689 L17.111,7.08105689 L16.418,5.67705689 L14.222,1.78905689 L13.151,1.78905689 L13.151,8.41305689 L14.141,8.41305689 Z" transform="rotate(-9 9.505 5.16)"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
3
frame/item/resources/month10.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="10" viewBox="0 0 20 10">
|
||||
<path fill="#E06164" d="M3.88,8.5439796 C5.581,8.5439796 6.769,7.2209796 6.769,5.0879796 C6.769,2.9549796 5.581,1.6769796 3.88,1.6769796 C2.179,1.6769796 1,2.9549796 1,5.0879796 C1,7.2209796 2.179,8.5439796 3.88,8.5439796 Z M3.88,7.6349796 C2.782,7.6349796 2.071,6.6449796 2.071,5.0879796 C2.071,3.5309796 2.782,2.5859796 3.88,2.5859796 C4.978,2.5859796 5.698,3.5309796 5.698,5.0879796 C5.698,6.6449796 4.978,7.6349796 3.88,7.6349796 Z M11.229,8.5439796 C12.084,8.5439796 12.759,8.2019796 13.29,7.5899796 L12.732,6.9329796 C12.336,7.3649796 11.868,7.6349796 11.265,7.6349796 C10.095,7.6349796 9.357,6.6719796 9.357,5.0969796 C9.357,3.5399796 10.149,2.5859796 11.292,2.5859796 C11.832,2.5859796 12.246,2.8289796 12.588,3.1799796 L13.155,2.5139796 C12.75,2.0729796 12.102,1.6769796 11.274,1.6769796 C9.6,1.6769796 8.286,2.9729796 8.286,5.1329796 C8.286,7.3019796 9.564,8.5439796 11.229,8.5439796 Z M17.192,8.4269796 L17.192,2.6759796 L19.145,2.6759796 L19.145,1.8029796 L14.204,1.8029796 L14.204,2.6759796 L16.148,2.6759796 L16.148,8.4269796 L17.192,8.4269796 Z" transform="rotate(-9 10.073 5.11)"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
3
frame/item/resources/month11.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="10" viewBox="0 0 20 10">
|
||||
<path fill="#E06164" d="M1.99,8.37696041 L1.99,5.25396041 C1.99,4.53396041 1.909,3.76896041 1.855,3.08496041 L1.9,3.08496041 L2.593,4.47096041 L4.789,8.37696041 L5.86,8.37696041 L5.86,1.75296041 L4.87,1.75296041 L4.87,4.83996041 C4.87,5.55996041 4.951,6.36096041 5.005,7.04496041 L4.96,7.04496041 L4.267,5.64096041 L2.071,1.75296041 L1,1.75296041 L1,8.37696041 L1.99,8.37696041 Z M10.626,8.49396041 C12.327,8.49396041 13.515,7.17096041 13.515,5.03796041 C13.515,2.90496041 12.327,1.62696041 10.626,1.62696041 C8.925,1.62696041 7.746,2.90496041 7.746,5.03796041 C7.746,7.17096041 8.925,8.49396041 10.626,8.49396041 Z M10.626,7.58496041 C9.528,7.58496041 8.817,6.59496041 8.817,5.03796041 C8.817,3.48096041 9.528,2.53596041 10.626,2.53596041 C11.724,2.53596041 12.444,3.48096041 12.444,5.03796041 C12.444,6.59496041 11.724,7.58496041 10.626,7.58496041 Z M17.714,8.37696041 L19.784,1.75296041 L18.722,1.75296041 L17.741,5.18196041 C17.525,5.93796041 17.363,6.58596041 17.138,7.35096041 L17.093,7.35096041 C16.859,6.58596041 16.715,5.93796041 16.49,5.18196041 L15.509,1.75296041 L14.402,1.75296041 L16.481,8.37696041 L17.714,8.37696041 Z" transform="rotate(-9 10.392 5.06)"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
3
frame/item/resources/month12.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="10" viewBox="0 0 20 10">
|
||||
<path fill="#E06164" d="M3.20340643,8.26362364 C5.18340643,8.26362364 6.34440643,7.07562364 6.34440643,4.92462364 C6.34440643,2.76462364 5.18340643,1.63962364 3.14940643,1.63962364 L1.43040643,1.63962364 L1.43040643,8.26362364 L3.20340643,8.26362364 Z M3.07740643,7.40862364 L2.47440643,7.40862364 L2.47440643,2.48562364 L3.07740643,2.48562364 C4.49940643,2.48562364 5.26440643,3.26862364 5.26440643,4.92462364 C5.26440643,6.57162364 4.49940643,7.40862364 3.07740643,7.40862364 Z M12.2354064,8.26362364 L12.2354064,7.38162364 L9.26540643,7.38162364 L9.26540643,5.23962364 L11.6954064,5.23962364 L11.6954064,4.35762364 L9.26540643,4.35762364 L9.26540643,2.51262364 L12.1364064,2.51262364 L12.1364064,1.63962364 L8.22140643,1.63962364 L8.22140643,8.26362364 L12.2354064,8.26362364 Z M16.7044064,8.38062364 C17.5594064,8.38062364 18.2344064,8.03862364 18.7654064,7.42662364 L18.2074064,6.76962364 C17.8114064,7.20162364 17.3434064,7.47162364 16.7404064,7.47162364 C15.5704064,7.47162364 14.8324064,6.50862364 14.8324064,4.93362364 C14.8324064,3.37662364 15.6244064,2.42262364 16.7674064,2.42262364 C17.3074064,2.42262364 17.7214064,2.66562364 18.0634064,3.01662364 L18.6304064,2.35062364 C18.2254064,1.90962364 17.5774064,1.51362364 16.7494064,1.51362364 C15.0754064,1.51362364 13.7614064,2.80962364 13.7614064,4.96962364 C13.7614064,7.13862364 15.0394064,8.38062364 16.7044064,8.38062364 Z" transform="rotate(-9 10.098 4.947)"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
3
frame/item/resources/month2.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="10" viewBox="0 0 20 10">
|
||||
<path fill="#E06164" d="M3.044,8.35394094 L3.044,5.50094094 L5.492,5.50094094 L5.492,4.62794094 L3.044,4.62794094 L3.044,2.60294094 L5.924,2.60294094 L5.924,1.72994094 L2,1.72994094 L2,8.35394094 L3.044,8.35394094 Z M11.608,8.35394094 L11.608,7.47194094 L8.638,7.47194094 L8.638,5.32994094 L11.068,5.32994094 L11.068,4.44794094 L8.638,4.44794094 L8.638,2.60294094 L11.509,2.60294094 L11.509,1.72994094 L7.594,1.72994094 L7.594,8.35394094 L11.608,8.35394094 Z M15.708,8.35394094 C17.175,8.35394094 18.246,7.72394094 18.246,6.40994094 C18.246,5.50994094 17.697,4.99694094 16.941,4.83494094 L16.941,4.78994094 C17.535,4.59194094 17.886,3.98894094 17.886,3.35894094 C17.886,2.16194094 16.905,1.72994094 15.546,1.72994094 L13.494,1.72994094 L13.494,8.35394094 L15.708,8.35394094 Z M15.429,4.49294094 L14.538,4.49294094 L14.538,2.53994094 L15.456,2.53994094 C16.392,2.53994094 16.86,2.80094094 16.86,3.49394094 C16.86,4.11494094 16.437,4.49294094 15.429,4.49294094 Z M15.591,7.53494094 L14.538,7.53494094 L14.538,5.28494094 L15.591,5.28494094 C16.644,5.28494094 17.22,5.60894094 17.22,6.35594094 C17.22,7.16594094 16.626,7.53494094 15.591,7.53494094 Z" transform="rotate(-9 10.123 5.042)"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
3
frame/item/resources/month3.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="10" viewBox="0 0 20 10">
|
||||
<path fill="#E06164" d="M1.53798122,8.25879188 L1.53798122,4.98279188 C1.53798122,4.38879188 1.45698122,3.53379188 1.41198122,2.93079188 L1.44798122,2.93079188 L1.96998122,4.46079188 L3.13098122,7.61979188 L3.77898122,7.61979188 L4.93098122,4.46079188 L5.46198122,2.93079188 L5.49798122,2.93079188 C5.44398122,3.53379188 5.36298122,4.38879188 5.36298122,4.98279188 L5.36298122,8.25879188 L6.33498122,8.25879188 L6.33498122,1.63479188 L5.12898122,1.63479188 L3.93198122,4.98279188 C3.77898122,5.42379188 3.65298122,5.87379188 3.49998122,6.32379188 L3.45498122,6.32379188 C3.30198122,5.87379188 3.16698122,5.42379188 3.01398122,4.98279188 L1.79898122,1.63479188 L0.601981221,1.63479188 L0.601981221,8.25879188 L1.53798122,8.25879188 Z M8.76098122,8.25879188 L9.32798122,6.36879188 L11.6319812,6.36879188 L12.1899812,8.25879188 L13.2969812,8.25879188 L11.1009812,1.63479188 L9.89498122,1.63479188 L7.69898122,8.25879188 L8.76098122,8.25879188 Z M11.3799812,5.54979188 L9.57098122,5.54979188 L9.84098122,4.65879188 C10.0569812,3.93879188 10.2639812,3.20979188 10.4529812,2.45379188 L10.4889812,2.45379188 C10.6959812,3.20079188 10.8939812,3.93879188 11.1189812,4.65879188 L11.3799812,5.54979188 Z M15.7139812,8.25879188 L15.7139812,5.58579188 L16.7849812,5.58579188 L18.2879812,8.25879188 L19.4669812,8.25879188 L17.8469812,5.45079188 C18.6839812,5.18979188 19.2329812,4.57779188 19.2329812,3.55179188 C19.2329812,2.12079188 18.2069812,1.63479188 16.8389812,1.63479188 L14.6699812,1.63479188 L14.6699812,8.25879188 L15.7139812,8.25879188 Z M16.7129812,4.74879188 L15.7139812,4.74879188 L15.7139812,2.47179188 L16.7129812,2.47179188 C17.6759812,2.47179188 18.1979812,2.75079188 18.1979812,3.55179188 C18.1979812,4.35279188 17.6759812,4.74879188 16.7129812,4.74879188 Z" transform="rotate(-9 10.034 4.947)"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
3
frame/item/resources/month4.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="10" viewBox="0 0 20 10">
|
||||
<path fill="#E06164" d="M1.96874583,8.29825174 L2.53574583,6.40825174 L4.83974583,6.40825174 L5.39774583,8.29825174 L6.50474583,8.29825174 L4.30874583,1.67425174 L3.10274583,1.67425174 L0.906745833,8.29825174 L1.96874583,8.29825174 Z M4.58774583,5.58925174 L2.77874583,5.58925174 L3.04874583,4.69825174 C3.26474583,3.97825174 3.47174583,3.24925174 3.66074583,2.49325174 L3.69674583,2.49325174 C3.90374583,3.24025174 4.10174583,3.97825174 4.32674583,4.69825174 L4.58774583,5.58925174 Z M8.92174583,8.29825174 L8.92174583,5.78725174 L9.92074583,5.78725174 C11.3607458,5.78725174 12.4137458,5.12125174 12.4137458,3.67225174 C12.4137458,2.17825174 11.3607458,1.67425174 9.88474583,1.67425174 L7.87774583,1.67425174 L7.87774583,8.29825174 L8.92174583,8.29825174 Z M9.82174583,4.95025174 L8.92174583,4.95025174 L8.92174583,2.51125174 L9.78574583,2.51125174 C10.8387458,2.51125174 11.3877458,2.79925174 11.3877458,3.67225174 C11.3877458,4.54525174 10.8837458,4.95025174 9.82174583,4.95025174 Z M15.2447458,8.29825174 L15.2447458,5.62525174 L16.3157458,5.62525174 L17.8187458,8.29825174 L18.9977458,8.29825174 L17.3777458,5.49025174 C18.2147458,5.22925174 18.7637458,4.61725174 18.7637458,3.59125174 C18.7637458,2.16025174 17.7377458,1.67425174 16.3697458,1.67425174 L14.2007458,1.67425174 L14.2007458,8.29825174 L15.2447458,8.29825174 Z M16.2437458,4.78825174 L15.2447458,4.78825174 L15.2447458,2.51125174 L16.2437458,2.51125174 C17.2067458,2.51125174 17.7287458,2.79025174 17.7287458,3.59125174 C17.7287458,4.39225174 17.2067458,4.78825174 16.2437458,4.78825174 Z" transform="rotate(-9 9.952 4.986)"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
3
frame/item/resources/month5.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="10" viewBox="0 0 20 10">
|
||||
<path fill="#E06164" d="M2.14302285,8.29473196 L2.14302285,5.01873196 C2.14302285,4.42473196 2.06202285,3.56973196 2.01702285,2.96673196 L2.05302285,2.96673196 L2.57502285,4.49673196 L3.73602285,7.65573196 L4.38402285,7.65573196 L5.53602285,4.49673196 L6.06702285,2.96673196 L6.10302285,2.96673196 C6.04902285,3.56973196 5.96802285,4.42473196 5.96802285,5.01873196 L5.96802285,8.29473196 L6.94002285,8.29473196 L6.94002285,1.67073196 L5.73402285,1.67073196 L4.53702285,5.01873196 C4.38402285,5.45973196 4.25802285,5.90973196 4.10502285,6.35973196 L4.06002285,6.35973196 C3.90702285,5.90973196 3.77202285,5.45973196 3.61902285,5.01873196 L2.40402285,1.67073196 L1.20702285,1.67073196 L1.20702285,8.29473196 L2.14302285,8.29473196 Z M9.36602285,8.29473196 L9.93302285,6.40473196 L12.2370228,6.40473196 L12.7950228,8.29473196 L13.9020228,8.29473196 L11.7060228,1.67073196 L10.5000228,1.67073196 L8.30402285,8.29473196 L9.36602285,8.29473196 Z M11.9850228,5.58573196 L10.1760228,5.58573196 L10.4460228,4.69473196 C10.6620228,3.97473196 10.8690228,3.24573196 11.0580228,2.48973196 L11.0940228,2.48973196 C11.3010228,3.23673196 11.4990228,3.97473196 11.7240228,4.69473196 L11.9850228,5.58573196 Z M17.2550228,8.29473196 L17.2550228,5.78373196 L19.2530228,1.67073196 L18.1640228,1.67073196 L17.3900228,3.42573196 C17.1920228,3.92073196 16.9760228,4.37973196 16.7600228,4.88373196 L16.7240228,4.88373196 C16.4990228,4.37973196 16.3100228,3.92073196 16.1030228,3.42573196 L15.3380228,1.67073196 L14.2220228,1.67073196 L16.2110228,5.78373196 L16.2110228,8.29473196 L17.2550228,8.29473196 Z" transform="rotate(-9 10.23 4.983)"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
3
frame/item/resources/month6.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="10" viewBox="0 0 20 10">
|
||||
<path fill="#E06164" d="M2.53339587,8.40819591 C3.88339587,8.40819591 4.45939587,7.45419591 4.45939587,6.26619591 L4.45939587,1.66719591 L3.41539587,1.66719591 L3.41539587,6.16719591 C3.41539587,7.13919591 3.08239587,7.49919591 2.41639587,7.49919591 C1.98439587,7.49919591 1.62439587,7.29219591 1.34539587,6.77919591 L0.616395871,7.31019591 C1.03039587,8.03919591 1.64239587,8.40819591 2.53339587,8.40819591 Z M9.09939587,8.40819591 C10.5663959,8.40819591 11.5563959,7.60719591 11.5563959,5.44719591 L11.5563959,1.66719591 L10.5483959,1.66719591 L10.5483959,5.51919591 C10.5483959,7.01319591 9.93639587,7.49919591 9.09939587,7.49919591 C8.27139587,7.49919591 7.67739587,7.01319591 7.67739587,5.51919591 L7.67739587,1.66719591 L6.63339587,1.66719591 L6.63339587,5.44719591 C6.63339587,7.60719591 7.63239587,8.40819591 9.09939587,8.40819591 Z M14.7563959,8.29119591 L14.7563959,5.16819591 C14.7563959,4.44819591 14.6753959,3.68319591 14.6213959,2.99919591 L14.6663959,2.99919591 L15.3593959,4.38519591 L17.5553959,8.29119591 L18.6263959,8.29119591 L18.6263959,1.66719591 L17.6363959,1.66719591 L17.6363959,4.75419591 C17.6363959,5.47419591 17.7173959,6.27519591 17.7713959,6.95919591 L17.7263959,6.95919591 L17.0333959,5.55519591 L14.8373959,1.66719591 L13.7663959,1.66719591 L13.7663959,8.29119591 L14.7563959,8.29119591 Z" transform="rotate(-9 9.621 5.038)"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
3
frame/item/resources/month7.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="10" viewBox="0 0 20 10">
|
||||
<path fill="#E06164" d="M2.93965635,8.02864898 C4.28965635,8.02864898 4.86565635,7.07464898 4.86565635,5.88664898 L4.86565635,1.28764898 L3.82165635,1.28764898 L3.82165635,5.78764898 C3.82165635,6.75964898 3.48865635,7.11964898 2.82265635,7.11964898 C2.39065635,7.11964898 2.03065635,6.91264898 1.75165635,6.39964898 L1.02265635,6.93064898 C1.43665635,7.65964898 2.04865635,8.02864898 2.93965635,8.02864898 Z M9.50565635,8.02864898 C10.9726564,8.02864898 11.9626564,7.22764898 11.9626564,5.06764898 L11.9626564,1.28764898 L10.9546564,1.28764898 L10.9546564,5.13964898 C10.9546564,6.63364898 10.3426564,7.11964898 9.50565635,7.11964898 C8.67765635,7.11964898 8.08365635,6.63364898 8.08365635,5.13964898 L8.08365635,1.28764898 L7.03965635,1.28764898 L7.03965635,5.06764898 C7.03965635,7.22764898 8.03865635,8.02864898 9.50565635,8.02864898 Z M18.0156564,7.91164898 L18.0156564,7.02964898 L15.2166564,7.02964898 L15.2166564,1.28764898 L14.1726564,1.28764898 L14.1726564,7.91164898 L18.0156564,7.91164898 Z" transform="rotate(-9 9.52 4.658)"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
3
frame/item/resources/month8.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="10" viewBox="0 0 20 10">
|
||||
<path fill="#E06164" d="M1.48387445,8.17203273 L2.05087445,6.28203273 L4.35487445,6.28203273 L4.91287445,8.17203273 L6.01987445,8.17203273 L3.82387445,1.54803273 L2.61787445,1.54803273 L0.421874448,8.17203273 L1.48387445,8.17203273 Z M4.10287445,5.46303273 L2.29387445,5.46303273 L2.56387445,4.57203273 C2.77987445,3.85203273 2.98687445,3.12303273 3.17587445,2.36703273 L3.21187445,2.36703273 C3.41887445,3.11403273 3.61687445,3.85203273 3.84187445,4.57203273 L4.10287445,5.46303273 Z M9.67887445,8.28903273 C11.1458744,8.28903273 12.1358744,7.48803273 12.1358744,5.32803273 L12.1358744,1.54803273 L11.1278744,1.54803273 L11.1278744,5.40003273 C11.1278744,6.89403273 10.5158744,7.38003273 9.67887445,7.38003273 C8.85087445,7.38003273 8.25687445,6.89403273 8.25687445,5.40003273 L8.25687445,1.54803273 L7.21287445,1.54803273 L7.21287445,5.32803273 C7.21287445,7.48803273 8.21187445,8.28903273 9.67887445,8.28903273 Z M17.0458744,8.28903273 C17.9548744,8.28903273 18.7018744,7.95603273 19.1428744,7.51503273 L19.1428744,4.64403273 L16.8838744,4.64403273 L16.8838744,5.49903273 L18.1978744,5.49903273 L18.1978744,7.05603273 C17.9638744,7.26303273 17.5588744,7.38003273 17.1538744,7.38003273 C15.7858744,7.38003273 15.0568744,6.41703273 15.0568744,4.84203273 C15.0568744,3.28503273 15.8758744,2.33103273 17.1088744,2.33103273 C17.7478744,2.33103273 18.1528744,2.59203273 18.4768744,2.92503273 L19.0438744,2.25903273 C18.6388744,1.83603273 18.0088744,1.42203273 17.0728744,1.42203273 C15.3178744,1.42203273 13.9858744,2.71803273 13.9858744,4.87803273 C13.9858744,7.04703273 15.2728744,8.28903273 17.0458744,8.28903273 Z" transform="rotate(-9 9.782 4.856)"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
3
frame/item/resources/month9.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="10" viewBox="0 0 20 10">
|
||||
<path fill="#E06164" d="M3.99123195,8.44472193 C5.44023195,8.44472193 6.32223195,7.58072193 6.32223195,6.51872193 C6.32223195,5.54672193 5.75523195,5.06072193 4.97223195,4.72772193 L4.06323195,4.34072193 C3.52323195,4.12472193 2.99223195,3.90872193 2.99223195,3.34172193 C2.99223195,2.81072193 3.43323195,2.48672193 4.10823195,2.48672193 C4.69323195,2.48672193 5.15223195,2.71172193 5.56623195,3.08072193 L6.11523195,2.41472193 C5.61123195,1.90172193 4.88223195,1.57772193 4.10823195,1.57772193 C2.84823195,1.57772193 1.93023195,2.36072193 1.93023195,3.40472193 C1.93023195,4.36772193 2.64123195,4.87172193 3.28023195,5.14172193 L4.19823195,5.53772193 C4.81023195,5.80772193 5.26023195,5.99672193 5.26023195,6.59972193 C5.26023195,7.15772193 4.81023195,7.53572193 4.00923195,7.53572193 C3.37023195,7.53572193 2.72223195,7.22972193 2.24523195,6.75272193 L1.63323195,7.47272193 C2.23623195,8.08472193 3.08223195,8.44472193 3.99123195,8.44472193 Z M12.087232,8.32772193 L12.087232,7.44572193 L9.11723195,7.44572193 L9.11723195,5.30372193 L11.547232,5.30372193 L11.547232,4.42172193 L9.11723195,4.42172193 L9.11723195,2.57672193 L11.988232,2.57672193 L11.988232,1.70372193 L8.07323195,1.70372193 L8.07323195,8.32772193 L12.087232,8.32772193 Z M15.017232,8.32772193 L15.017232,5.81672193 L16.016232,5.81672193 C17.456232,5.81672193 18.509232,5.15072193 18.509232,3.70172193 C18.509232,2.20772193 17.456232,1.70372193 15.980232,1.70372193 L13.973232,1.70372193 L13.973232,8.32772193 L15.017232,8.32772193 Z M15.917232,4.97972193 L15.017232,4.97972193 L15.017232,2.54072193 L15.881232,2.54072193 C16.934232,2.54072193 17.483232,2.82872193 17.483232,3.70172193 C17.483232,4.57472193 16.979232,4.97972193 15.917232,4.97972193 Z" transform="rotate(-9 10.071 5.011)"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
3
frame/item/resources/week1.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="6" viewBox="0 0 14 6">
|
||||
<path fill="#2D394F" d="M2.23379614,4.75 L2.23379614,2.93 C2.23379614,2.6 2.18879614,2.125 2.16379614,1.79 L2.18379614,1.79 L2.47379614,2.64 L3.11879614,4.395 L3.47879614,4.395 L4.11879614,2.64 L4.41379614,1.79 L4.43379614,1.79 C4.40379614,2.125 4.35879614,2.6 4.35879614,2.93 L4.35879614,4.75 L4.89879614,4.75 L4.89879614,1.07 L4.22879614,1.07 L3.56379614,2.93 C3.47879614,3.175 3.40879614,3.425 3.32379614,3.675 L3.29879614,3.675 C3.21379614,3.425 3.13879614,3.175 3.05379614,2.93 L2.37879614,1.07 L1.71379614,1.07 L1.71379614,4.75 L2.23379614,4.75 Z M7.26379614,4.815 C8.20879614,4.815 8.86879614,4.08 8.86879614,2.895 C8.86879614,1.71 8.20879614,1 7.26379614,1 C6.31879614,1 5.66379614,1.71 5.66379614,2.895 C5.66379614,4.08 6.31879614,4.815 7.26379614,4.815 Z M7.26379614,4.31 C6.65379614,4.31 6.25879614,3.76 6.25879614,2.895 C6.25879614,2.03 6.65379614,1.505 7.26379614,1.505 C7.87379614,1.505 8.27379614,2.03 8.27379614,2.895 C8.27379614,3.76 7.87379614,4.31 7.26379614,4.31 Z M10.1837961,4.75 L10.1837961,3.015 C10.1837961,2.615 10.1387961,2.19 10.1087961,1.81 L10.1337961,1.81 L10.5187961,2.58 L11.7387961,4.75 L12.3337961,4.75 L12.3337961,1.07 L11.7837961,1.07 L11.7837961,2.785 C11.7837961,3.185 11.8287961,3.63 11.8587961,4.01 L11.8337961,4.01 L11.4487961,3.23 L10.2287961,1.07 L9.63379614,1.07 L9.63379614,4.75 L10.1837961,4.75 Z" transform="rotate(-8 7.024 2.907)"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
3
frame/item/resources/week2.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="6" viewBox="0 0 14 6">
|
||||
<path fill="#2D394F" d="M2.36518338,4.93041345 L2.36518338,1.73541345 L3.45018338,1.73541345 L3.45018338,1.25041345 L0.705183376,1.25041345 L0.705183376,1.73541345 L1.78518338,1.73541345 L1.78518338,4.93041345 L2.36518338,4.93041345 Z M5.43518338,4.99541345 C6.25018338,4.99541345 6.80018338,4.55041345 6.80018338,3.35041345 L6.80018338,1.25041345 L6.24018338,1.25041345 L6.24018338,3.39041345 C6.24018338,4.22041345 5.90018338,4.49041345 5.43518338,4.49041345 C4.97518338,4.49041345 4.64518338,4.22041345 4.64518338,3.39041345 L4.64518338,1.25041345 L4.06518338,1.25041345 L4.06518338,3.35041345 C4.06518338,4.55041345 4.62018338,4.99541345 5.43518338,4.99541345 Z M9.98018338,4.93041345 L9.98018338,4.44041345 L8.33018338,4.44041345 L8.33018338,3.25041345 L9.68018338,3.25041345 L9.68018338,2.76041345 L8.33018338,2.76041345 L8.33018338,1.73541345 L9.92518338,1.73541345 L9.92518338,1.25041345 L7.75018338,1.25041345 L7.75018338,4.93041345 L9.98018338,4.93041345 Z M11.8001834,4.99541345 C12.6051834,4.99541345 13.0951834,4.51541345 13.0951834,3.92541345 C13.0951834,3.38541345 12.7801834,3.11541345 12.3451834,2.93041345 L11.8401834,2.71541345 C11.5401834,2.59541345 11.2451834,2.47541345 11.2451834,2.16041345 C11.2451834,1.86541345 11.4901834,1.68541345 11.8651834,1.68541345 C12.1901834,1.68541345 12.4451834,1.81041345 12.6751834,2.01541345 L12.9801834,1.64541345 C12.7001834,1.36041345 12.2951834,1.18041345 11.8651834,1.18041345 C11.1651834,1.18041345 10.6551834,1.61541345 10.6551834,2.19541345 C10.6551834,2.73041345 11.0501834,3.01041345 11.4051834,3.16041345 L11.9151834,3.38041345 C12.2551834,3.53041345 12.5051834,3.63541345 12.5051834,3.97041345 C12.5051834,4.28041345 12.2551834,4.49041345 11.8101834,4.49041345 C11.4551834,4.49041345 11.0951834,4.32041345 10.8301834,4.05541345 L10.4901834,4.45541345 C10.8251834,4.79541345 11.2951834,4.99541345 11.8001834,4.99541345 Z" transform="rotate(-8 6.9 3.088)"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
3
frame/item/resources/week3.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="6" viewBox="0 0 14 6">
|
||||
<path fill="#2D394F" d="M3.15962092,4.79797102 L3.64462092,2.75297102 C3.70462092,2.46297102 3.76462092,2.18797102 3.81462092,1.90797102 L3.83962092,1.90797102 C3.88962092,2.18797102 3.94462092,2.46297102 4.00962092,2.75297102 L4.50462092,4.79797102 L5.21962092,4.79797102 L5.94462092,1.11797102 L5.38962092,1.11797102 L5.03962092,3.03297102 C4.97962092,3.41797102 4.91462092,3.81297102 4.85462092,4.21297102 L4.82962092,4.21297102 C4.74462092,3.81297102 4.66462092,3.41797102 4.57962092,3.03297102 L4.09962092,1.11797102 L3.58962092,1.11797102 L3.11462092,3.03297102 C3.02962092,3.42297102 2.94462092,3.81797102 2.86462092,4.21297102 L2.84462092,4.21297102 L2.64962092,3.03297102 L2.30462092,1.11797102 L1.70462092,1.11797102 L2.45962092,4.79797102 L3.15962092,4.79797102 Z M8.77962092,4.79797102 L8.77962092,4.30797102 L7.12962092,4.30797102 L7.12962092,3.11797102 L8.47962092,3.11797102 L8.47962092,2.62797102 L7.12962092,2.62797102 L7.12962092,1.60297102 L8.72462092,1.60297102 L8.72462092,1.11797102 L6.54962092,1.11797102 L6.54962092,4.79797102 L8.77962092,4.79797102 Z M10.5346209,4.79797102 C11.6346209,4.79797102 12.2796209,4.13797102 12.2796209,2.94297102 C12.2796209,1.74297102 11.6346209,1.11797102 10.5046209,1.11797102 L9.54962092,1.11797102 L9.54962092,4.79797102 L10.5346209,4.79797102 Z M10.4646209,4.32297102 L10.1296209,4.32297102 L10.1296209,1.58797102 L10.4646209,1.58797102 C11.2546209,1.58797102 11.6796209,2.02297102 11.6796209,2.94297102 C11.6796209,3.85797102 11.2546209,4.32297102 10.4646209,4.32297102 Z" transform="rotate(-8 6.992 2.958)"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
3
frame/item/resources/week4.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="6" viewBox="0 0 14 6">
|
||||
<path fill="#2D394F" d="M1.95534903,4.7949326 L1.95534903,1.5999326 L3.04034903,1.5999326 L3.04034903,1.1149326 L0.295349032,1.1149326 L0.295349032,1.5999326 L1.37534903,1.5999326 L1.37534903,4.7949326 L1.95534903,4.7949326 Z M4.25534903,4.7949326 L4.25534903,3.1199326 L5.83034903,3.1199326 L5.83034903,4.7949326 L6.41034903,4.7949326 L6.41034903,1.1149326 L5.83034903,1.1149326 L5.83034903,2.6149326 L4.25534903,2.6149326 L4.25534903,1.1149326 L3.67534903,1.1149326 L3.67534903,4.7949326 L4.25534903,4.7949326 Z M8.72534903,4.8599326 C9.54034903,4.8599326 10.090349,4.4149326 10.090349,3.2149326 L10.090349,1.1149326 L9.53034903,1.1149326 L9.53034903,3.2549326 C9.53034903,4.0849326 9.19034903,4.3549326 8.72534903,4.3549326 C8.26534903,4.3549326 7.93534903,4.0849326 7.93534903,3.2549326 L7.93534903,1.1149326 L7.35534903,1.1149326 L7.35534903,3.2149326 C7.35534903,4.4149326 7.91034903,4.8599326 8.72534903,4.8599326 Z M11.620349,4.7949326 L11.620349,3.3099326 L12.215349,3.3099326 L13.050349,4.7949326 L13.705349,4.7949326 L12.805349,3.2349326 C13.270349,3.0899326 13.575349,2.7499326 13.575349,2.1799326 C13.575349,1.3849326 13.005349,1.1149326 12.245349,1.1149326 L11.040349,1.1149326 L11.040349,4.7949326 L11.620349,4.7949326 Z M12.175349,2.8449326 L11.620349,2.8449326 L11.620349,1.5799326 L12.175349,1.5799326 C12.710349,1.5799326 13.000349,1.7349326 13.000349,2.1799326 C13.000349,2.6249326 12.710349,2.8449326 12.175349,2.8449326 Z" transform="rotate(-8 7 2.987)"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
3
frame/item/resources/week5.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="6" viewBox="0 0 14 6">
|
||||
<path fill="#2D394F" d="M3.49868356,4.89686589 L3.49868356,3.31186589 L4.85868356,3.31186589 L4.85868356,2.82686589 L3.49868356,2.82686589 L3.49868356,1.70186589 L5.09868356,1.70186589 L5.09868356,1.21686589 L2.91868356,1.21686589 L2.91868356,4.89686589 L3.49868356,4.89686589 Z M6.82868356,4.89686589 L6.82868356,3.41186589 L7.42368356,3.41186589 L8.25868356,4.89686589 L8.91368356,4.89686589 L8.01368356,3.33686589 C8.47868356,3.19186589 8.78368356,2.85186589 8.78368356,2.28186589 C8.78368356,1.48686589 8.21368356,1.21686589 7.45368356,1.21686589 L6.24868356,1.21686589 L6.24868356,4.89686589 L6.82868356,4.89686589 Z M7.38368356,2.94686589 L6.82868356,2.94686589 L6.82868356,1.68186589 L7.38368356,1.68186589 C7.91868356,1.68186589 8.20868356,1.83686589 8.20868356,2.28186589 C8.20868356,2.72686589 7.91868356,2.94686589 7.38368356,2.94686589 Z M10.6036836,4.89686589 L10.6036836,1.21686589 L10.0236836,1.21686589 L10.0236836,4.89686589 L10.6036836,4.89686589 Z" transform="rotate(-8 6.761 3.057)"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
3
frame/item/resources/week6.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="6" viewBox="0 0 14 6">
|
||||
<path fill="#2D394F" d="M3.73253054,4.91053765 C4.53753054,4.91053765 5.02753054,4.43053765 5.02753054,3.84053765 C5.02753054,3.30053765 4.71253054,3.03053765 4.27753054,2.84553765 L3.77253054,2.63053765 C3.47253054,2.51053765 3.17753054,2.39053765 3.17753054,2.07553765 C3.17753054,1.78053765 3.42253054,1.60053765 3.79753054,1.60053765 C4.12253054,1.60053765 4.37753054,1.72553765 4.60753054,1.93053765 L4.91253054,1.56053765 C4.63253054,1.27553765 4.22753054,1.09553765 3.79753054,1.09553765 C3.09753054,1.09553765 2.58753054,1.53053765 2.58753054,2.11053765 C2.58753054,2.64553765 2.98253054,2.92553765 3.33753054,3.07553765 L3.84753054,3.29553765 C4.18753054,3.44553765 4.43753054,3.55053765 4.43753054,3.88553765 C4.43753054,4.19553765 4.18753054,4.40553765 3.74253054,4.40553765 C3.38753054,4.40553765 3.02753054,4.23553765 2.76253054,3.97053765 L2.42253054,4.37053765 C2.75753054,4.71053765 3.22753054,4.91053765 3.73253054,4.91053765 Z M5.82753054,4.84553765 L6.14253054,3.79553765 L7.42253054,3.79553765 L7.73253054,4.84553765 L8.34753054,4.84553765 L7.12753054,1.16553765 L6.45753054,1.16553765 L5.23753054,4.84553765 L5.82753054,4.84553765 Z M7.28253054,3.34053765 L6.27753054,3.34053765 L6.42753054,2.84553765 C6.54753054,2.44553765 6.66253054,2.04053765 6.76753054,1.62053765 L6.78753054,1.62053765 C6.90253054,2.03553765 7.01253054,2.44553765 7.13753054,2.84553765 L7.28253054,3.34053765 Z M10.1625305,4.84553765 L10.1625305,1.65053765 L11.2475305,1.65053765 L11.2475305,1.16553765 L8.50253054,1.16553765 L8.50253054,1.65053765 L9.58253054,1.65053765 L9.58253054,4.84553765 L10.1625305,4.84553765 Z" transform="rotate(-8 6.835 3.003)"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
3
frame/item/resources/week7.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="6" viewBox="0 0 14 6">
|
||||
<path fill="#2D394F" d="M3.31,4.96899035 C4.115,4.96899035 4.605,4.48899035 4.605,3.89899035 C4.605,3.35899035 4.29,3.08899035 3.855,2.90399035 L3.35,2.68899035 C3.05,2.56899035 2.755,2.44899035 2.755,2.13399035 C2.755,1.83899035 3,1.65899035 3.375,1.65899035 C3.7,1.65899035 3.955,1.78399035 4.185,1.98899035 L4.49,1.61899035 C4.21,1.33399035 3.805,1.15399035 3.375,1.15399035 C2.675,1.15399035 2.165,1.58899035 2.165,2.16899035 C2.165,2.70399035 2.56,2.98399035 2.915,3.13399035 L3.425,3.35399035 C3.765,3.50399035 4.015,3.60899035 4.015,3.94399035 C4.015,4.25399035 3.765,4.46399035 3.32,4.46399035 C2.965,4.46399035 2.605,4.29399035 2.34,4.02899035 L2,4.42899035 C2.335,4.76899035 2.805,4.96899035 3.31,4.96899035 Z M6.65,4.96899035 C7.465,4.96899035 8.015,4.52399035 8.015,3.32399035 L8.015,1.22399035 L7.455,1.22399035 L7.455,3.36399035 C7.455,4.19399035 7.115,4.46399035 6.65,4.46399035 C6.19,4.46399035 5.86,4.19399035 5.86,3.36399035 L5.86,1.22399035 L5.28,1.22399035 L5.28,3.32399035 C5.28,4.52399035 5.835,4.96899035 6.65,4.96899035 Z M9.515,4.90399035 L9.515,3.16899035 C9.515,2.76899035 9.47,2.34399035 9.44,1.96399035 L9.465,1.96399035 L9.85,2.73399035 L11.07,4.90399035 L11.665,4.90399035 L11.665,1.22399035 L11.115,1.22399035 L11.115,2.93899035 C11.115,3.33899035 11.16,3.78399035 11.19,4.16399035 L11.165,4.16399035 L10.78,3.38399035 L9.56,1.22399035 L8.965,1.22399035 L8.965,4.90399035 L9.515,4.90399035 Z" transform="rotate(-8 6.832 3.061)"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
@ -46,3 +46,13 @@ const QPixmap ImageUtil::loadSvg(const QString &iconName, const QString &localPa
|
||||
|
||||
return pixmap;
|
||||
}
|
||||
|
||||
const QPixmap ImageUtil::loadSvg(const QString &iconName, const QSize size, const qreal ratio)
|
||||
{
|
||||
QIcon icon = QIcon::fromTheme(iconName);
|
||||
if (!icon.isNull()) {
|
||||
QPixmap pixmap = icon.pixmap(size*ratio);
|
||||
pixmap.setDevicePixelRatio(ratio);
|
||||
return pixmap;
|
||||
}
|
||||
}
|
||||
|
@ -29,6 +29,7 @@ class ImageUtil
|
||||
{
|
||||
public:
|
||||
static const QPixmap loadSvg(const QString &iconName, const QString &localPath, const int size, const qreal ratio);
|
||||
static const QPixmap loadSvg(const QString &iconName, const QSize size, const qreal ratio);
|
||||
};
|
||||
|
||||
#endif // IMAGEUTIL_H
|
||||
|
@ -27,6 +27,11 @@
|
||||
#include <QApplication>
|
||||
#include <QPixmapCache>
|
||||
#include <QCryptographicHash>
|
||||
#include <QHBoxLayout>
|
||||
#include <QLabel>
|
||||
#include <QDate>
|
||||
|
||||
#include "../frame/util/imageutil.h"
|
||||
|
||||
ThemeAppIcon::ThemeAppIcon(QObject *parent) : QObject(parent)
|
||||
{
|
||||
@ -45,6 +50,54 @@ const QPixmap ThemeAppIcon::getIcon(const QString iconName, const int size, cons
|
||||
QIcon icon;
|
||||
// 把size改为小于size的最大偶数 :)
|
||||
const int s = int(size * ratio) & ~1;
|
||||
const float iconZoom = size /64.0*0.8;
|
||||
|
||||
if(iconName == "dde-calendar"){
|
||||
QDate const date(QDate::currentDate());
|
||||
|
||||
auto pixday = ImageUtil::loadSvg(":/indicator/resources/calendar_bg.svg","",size,ratio);
|
||||
auto calendar = new QWidget() ;
|
||||
calendar->setFixedSize(s,s);
|
||||
|
||||
calendar->setAutoFillBackground(true);
|
||||
QPalette palette = calendar->palette();
|
||||
palette.setBrush(QPalette::Window,
|
||||
QBrush(QPixmap(":/indicator/resources/calendar_bg.svg").scaled(
|
||||
calendar->size(),
|
||||
Qt::IgnoreAspectRatio,
|
||||
Qt::SmoothTransformation)));
|
||||
calendar->setPalette(palette);
|
||||
|
||||
QVBoxLayout *layout = new QVBoxLayout;
|
||||
layout->setSpacing(0);
|
||||
auto month = new QLabel();
|
||||
month->setPixmap( ImageUtil::loadSvg(QString(":/icons/resources/month%1.svg").arg(date.month()),QSize(36,16)*iconZoom,ratio));
|
||||
month->setFixedHeight(month->pixmap()->height());
|
||||
month->setAlignment(Qt::AlignCenter);
|
||||
month->setFixedWidth(s-5*iconZoom);
|
||||
layout->addWidget(month,Qt::AlignVCenter);
|
||||
|
||||
auto day = new QLabel();
|
||||
day->setPixmap( ImageUtil::loadSvg(QString(":/icons/resources/day%1.svg").arg(date.day()),QSize(32,30)*iconZoom,ratio));
|
||||
day->setAlignment(Qt::AlignCenter);
|
||||
day->setFixedHeight(day->pixmap()->height());
|
||||
day->raise();
|
||||
layout->addWidget(day,Qt::AlignVCenter);
|
||||
|
||||
auto week = new QLabel();
|
||||
week->setPixmap( ImageUtil::loadSvg(QString(":/icons/resources/week%1.svg").arg(date.dayOfWeek()),QSize(26,13)*iconZoom,ratio));
|
||||
week->setFixedHeight(week->pixmap()->height());
|
||||
week->setAlignment(Qt::AlignCenter);
|
||||
week->setFixedWidth(s+5*iconZoom);
|
||||
layout->addWidget(week,Qt::AlignVCenter);
|
||||
layout->setSpacing(0);
|
||||
layout->setContentsMargins(0,10*iconZoom,0,10*iconZoom);
|
||||
calendar->setLayout(layout);
|
||||
pixmap = calendar->grab(calendar->rect());
|
||||
|
||||
return pixmap;
|
||||
}
|
||||
|
||||
|
||||
do {
|
||||
|
||||
|