accrete 0.0.35__py3-none-any.whl → 0.0.37__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. accrete/annotation.py +46 -0
  2. accrete/contrib/ui/__init__.py +12 -3
  3. accrete/contrib/ui/context.py +184 -257
  4. accrete/contrib/ui/elements.py +78 -2
  5. accrete/contrib/ui/filter.py +110 -44
  6. accrete/contrib/ui/static/css/accrete.css +128 -128
  7. accrete/contrib/ui/static/css/accrete.css.map +1 -1
  8. accrete/contrib/ui/static/css/accrete.scss +9 -9
  9. accrete/contrib/ui/static/js/filter.js +24 -0
  10. accrete/contrib/ui/static/js/htmx.min.js +1 -0
  11. accrete/contrib/ui/templates/ui/layout.html +134 -129
  12. accrete/contrib/ui/templates/ui/list.html +3 -3
  13. accrete/contrib/ui/templates/ui/partials/filter.html +29 -5
  14. accrete/contrib/ui/templates/ui/partials/header.html +7 -7
  15. accrete/contrib/ui/templates/ui/partials/pagination_detail.html +3 -3
  16. accrete/contrib/ui/templates/ui/partials/pagination_list.html +4 -4
  17. accrete/contrib/ui/templates/ui/table.html +18 -13
  18. accrete/contrib/ui/templatetags/accrete_ui.py +12 -1
  19. accrete/contrib/user/forms.py +0 -4
  20. accrete/contrib/user/templates/user/login.html +6 -12
  21. accrete/contrib/user/views.py +31 -21
  22. accrete/middleware.py +15 -0
  23. accrete/models.py +9 -7
  24. accrete/querystring.py +11 -8
  25. accrete/utils/models.py +14 -0
  26. {accrete-0.0.35.dist-info → accrete-0.0.37.dist-info}/METADATA +1 -1
  27. {accrete-0.0.35.dist-info → accrete-0.0.37.dist-info}/RECORD +29 -28
  28. accrete/contrib/ui/components.py +0 -96
  29. accrete/contrib/ui/querystring.py +0 -19
  30. {accrete-0.0.35.dist-info → accrete-0.0.37.dist-info}/WHEEL +0 -0
  31. {accrete-0.0.35.dist-info → accrete-0.0.37.dist-info}/licenses/LICENSE +0 -0
@@ -1144,12 +1144,12 @@ a.box:active {
1144
1144
  color: #fff;
1145
1145
  }
1146
1146
  .button.is-primary {
1147
- background-color: #48c78e;
1147
+ background-color: hsl(171, 100%, 41%);
1148
1148
  border-color: transparent;
1149
1149
  color: #fff;
1150
1150
  }
1151
1151
  .button.is-primary:hover, .button.is-primary.is-hovered {
1152
- background-color: #3ec488;
1152
+ background-color: #00c4a7;
1153
1153
  border-color: transparent;
1154
1154
  color: #fff;
1155
1155
  }
@@ -1158,21 +1158,21 @@ a.box:active {
1158
1158
  color: #fff;
1159
1159
  }
1160
1160
  .button.is-primary:focus:not(:active), .button.is-primary.is-focused:not(:active) {
1161
- box-shadow: 0 rgba(72, 199, 142, 0.25);
1161
+ box-shadow: 0 rgba(0, 209, 178, 0.25);
1162
1162
  }
1163
1163
  .button.is-primary:active, .button.is-primary.is-active {
1164
- background-color: #3abc81;
1164
+ background-color: #00b89c;
1165
1165
  border-color: transparent;
1166
1166
  color: #fff;
1167
1167
  }
1168
1168
  .button.is-primary[disabled], fieldset[disabled] .button.is-primary {
1169
- background-color: #48c78e;
1170
- border-color: #48c78e;
1169
+ background-color: hsl(171, 100%, 41%);
1170
+ border-color: hsl(171, 100%, 41%);
1171
1171
  box-shadow: none;
1172
1172
  }
1173
1173
  .button.is-primary.is-inverted {
1174
1174
  background-color: #fff;
1175
- color: #48c78e;
1175
+ color: hsl(171, 100%, 41%);
1176
1176
  }
1177
1177
  .button.is-primary.is-inverted:hover, .button.is-primary.is-inverted.is-hovered {
1178
1178
  background-color: #f2f2f2;
@@ -1181,32 +1181,32 @@ a.box:active {
1181
1181
  background-color: #fff;
1182
1182
  border-color: transparent;
1183
1183
  box-shadow: none;
1184
- color: #48c78e;
1184
+ color: hsl(171, 100%, 41%);
1185
1185
  }
1186
1186
  .button.is-primary.is-loading::after {
1187
1187
  border-color: transparent transparent #fff #fff !important;
1188
1188
  }
1189
1189
  .button.is-primary.is-outlined {
1190
1190
  background-color: transparent;
1191
- border-color: #48c78e;
1192
- color: #48c78e;
1191
+ border-color: hsl(171, 100%, 41%);
1192
+ color: hsl(171, 100%, 41%);
1193
1193
  }
1194
1194
  .button.is-primary.is-outlined:hover, .button.is-primary.is-outlined.is-hovered, .button.is-primary.is-outlined:focus, .button.is-primary.is-outlined.is-focused {
1195
- background-color: #48c78e;
1196
- border-color: #48c78e;
1195
+ background-color: hsl(171, 100%, 41%);
1196
+ border-color: hsl(171, 100%, 41%);
1197
1197
  color: #fff;
1198
1198
  }
1199
1199
  .button.is-primary.is-outlined.is-loading::after {
1200
- border-color: transparent transparent #48c78e #48c78e !important;
1200
+ border-color: transparent transparent hsl(171, 100%, 41%) hsl(171, 100%, 41%) !important;
1201
1201
  }
1202
1202
  .button.is-primary.is-outlined.is-loading:hover::after, .button.is-primary.is-outlined.is-loading.is-hovered::after, .button.is-primary.is-outlined.is-loading:focus::after, .button.is-primary.is-outlined.is-loading.is-focused::after {
1203
1203
  border-color: transparent transparent #fff #fff !important;
1204
1204
  }
1205
1205
  .button.is-primary.is-outlined[disabled], fieldset[disabled] .button.is-primary.is-outlined {
1206
1206
  background-color: transparent;
1207
- border-color: #48c78e;
1207
+ border-color: hsl(171, 100%, 41%);
1208
1208
  box-shadow: none;
1209
- color: #48c78e;
1209
+ color: hsl(171, 100%, 41%);
1210
1210
  }
1211
1211
  .button.is-primary.is-inverted.is-outlined {
1212
1212
  background-color: transparent;
@@ -1215,10 +1215,10 @@ a.box:active {
1215
1215
  }
1216
1216
  .button.is-primary.is-inverted.is-outlined:hover, .button.is-primary.is-inverted.is-outlined.is-hovered, .button.is-primary.is-inverted.is-outlined:focus, .button.is-primary.is-inverted.is-outlined.is-focused {
1217
1217
  background-color: #fff;
1218
- color: #48c78e;
1218
+ color: hsl(171, 100%, 41%);
1219
1219
  }
1220
1220
  .button.is-primary.is-inverted.is-outlined.is-loading:hover::after, .button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-primary.is-inverted.is-outlined.is-loading:focus::after, .button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after {
1221
- border-color: transparent transparent #48c78e #48c78e !important;
1221
+ border-color: transparent transparent hsl(171, 100%, 41%) hsl(171, 100%, 41%) !important;
1222
1222
  }
1223
1223
  .button.is-primary.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-primary.is-inverted.is-outlined {
1224
1224
  background-color: transparent;
@@ -1227,18 +1227,18 @@ a.box:active {
1227
1227
  color: #fff;
1228
1228
  }
1229
1229
  .button.is-primary.is-light {
1230
- background-color: #effaf5;
1231
- color: #257953;
1230
+ background-color: #ebfffc;
1231
+ color: #00947e;
1232
1232
  }
1233
1233
  .button.is-primary.is-light:hover, .button.is-primary.is-light.is-hovered {
1234
- background-color: #e6f7ef;
1234
+ background-color: #defffa;
1235
1235
  border-color: transparent;
1236
- color: #257953;
1236
+ color: #00947e;
1237
1237
  }
1238
1238
  .button.is-primary.is-light:active, .button.is-primary.is-light.is-active {
1239
- background-color: #dcf4e9;
1239
+ background-color: #d1fff8;
1240
1240
  border-color: transparent;
1241
- color: #257953;
1241
+ color: #00947e;
1242
1242
  }
1243
1243
  .button.is-link {
1244
1244
  background-color: #0a0a0a;
@@ -1435,12 +1435,12 @@ a.box:active {
1435
1435
  color: #296fa8;
1436
1436
  }
1437
1437
  .button.is-success {
1438
- background-color: hsl(153, 53%, 53%);
1438
+ background-color: #48c78e;
1439
1439
  border-color: transparent;
1440
1440
  color: #fff;
1441
1441
  }
1442
1442
  .button.is-success:hover, .button.is-success.is-hovered {
1443
- background-color: #3ec487;
1443
+ background-color: #3ec488;
1444
1444
  border-color: transparent;
1445
1445
  color: #fff;
1446
1446
  }
@@ -1452,18 +1452,18 @@ a.box:active {
1452
1452
  box-shadow: 0 rgba(72, 199, 142, 0.25);
1453
1453
  }
1454
1454
  .button.is-success:active, .button.is-success.is-active {
1455
- background-color: #3abb81;
1455
+ background-color: #3abc81;
1456
1456
  border-color: transparent;
1457
1457
  color: #fff;
1458
1458
  }
1459
1459
  .button.is-success[disabled], fieldset[disabled] .button.is-success {
1460
- background-color: hsl(153, 53%, 53%);
1461
- border-color: hsl(153, 53%, 53%);
1460
+ background-color: #48c78e;
1461
+ border-color: #48c78e;
1462
1462
  box-shadow: none;
1463
1463
  }
1464
1464
  .button.is-success.is-inverted {
1465
1465
  background-color: #fff;
1466
- color: hsl(153, 53%, 53%);
1466
+ color: #48c78e;
1467
1467
  }
1468
1468
  .button.is-success.is-inverted:hover, .button.is-success.is-inverted.is-hovered {
1469
1469
  background-color: #f2f2f2;
@@ -1472,32 +1472,32 @@ a.box:active {
1472
1472
  background-color: #fff;
1473
1473
  border-color: transparent;
1474
1474
  box-shadow: none;
1475
- color: hsl(153, 53%, 53%);
1475
+ color: #48c78e;
1476
1476
  }
1477
1477
  .button.is-success.is-loading::after {
1478
1478
  border-color: transparent transparent #fff #fff !important;
1479
1479
  }
1480
1480
  .button.is-success.is-outlined {
1481
1481
  background-color: transparent;
1482
- border-color: hsl(153, 53%, 53%);
1483
- color: hsl(153, 53%, 53%);
1482
+ border-color: #48c78e;
1483
+ color: #48c78e;
1484
1484
  }
1485
1485
  .button.is-success.is-outlined:hover, .button.is-success.is-outlined.is-hovered, .button.is-success.is-outlined:focus, .button.is-success.is-outlined.is-focused {
1486
- background-color: hsl(153, 53%, 53%);
1487
- border-color: hsl(153, 53%, 53%);
1486
+ background-color: #48c78e;
1487
+ border-color: #48c78e;
1488
1488
  color: #fff;
1489
1489
  }
1490
1490
  .button.is-success.is-outlined.is-loading::after {
1491
- border-color: transparent transparent hsl(153, 53%, 53%) hsl(153, 53%, 53%) !important;
1491
+ border-color: transparent transparent #48c78e #48c78e !important;
1492
1492
  }
1493
1493
  .button.is-success.is-outlined.is-loading:hover::after, .button.is-success.is-outlined.is-loading.is-hovered::after, .button.is-success.is-outlined.is-loading:focus::after, .button.is-success.is-outlined.is-loading.is-focused::after {
1494
1494
  border-color: transparent transparent #fff #fff !important;
1495
1495
  }
1496
1496
  .button.is-success.is-outlined[disabled], fieldset[disabled] .button.is-success.is-outlined {
1497
1497
  background-color: transparent;
1498
- border-color: hsl(153, 53%, 53%);
1498
+ border-color: #48c78e;
1499
1499
  box-shadow: none;
1500
- color: hsl(153, 53%, 53%);
1500
+ color: #48c78e;
1501
1501
  }
1502
1502
  .button.is-success.is-inverted.is-outlined {
1503
1503
  background-color: transparent;
@@ -1506,10 +1506,10 @@ a.box:active {
1506
1506
  }
1507
1507
  .button.is-success.is-inverted.is-outlined:hover, .button.is-success.is-inverted.is-outlined.is-hovered, .button.is-success.is-inverted.is-outlined:focus, .button.is-success.is-inverted.is-outlined.is-focused {
1508
1508
  background-color: #fff;
1509
- color: hsl(153, 53%, 53%);
1509
+ color: #48c78e;
1510
1510
  }
1511
1511
  .button.is-success.is-inverted.is-outlined.is-loading:hover::after, .button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-success.is-inverted.is-outlined.is-loading:focus::after, .button.is-success.is-inverted.is-outlined.is-loading.is-focused::after {
1512
- border-color: transparent transparent hsl(153, 53%, 53%) hsl(153, 53%, 53%) !important;
1512
+ border-color: transparent transparent #48c78e #48c78e !important;
1513
1513
  }
1514
1514
  .button.is-success.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-success.is-inverted.is-outlined {
1515
1515
  background-color: transparent;
@@ -2279,12 +2279,12 @@ div.icon-text {
2279
2279
  color: #fff;
2280
2280
  }
2281
2281
  .notification.is-primary {
2282
- background-color: #48c78e;
2282
+ background-color: hsl(171, 100%, 41%);
2283
2283
  color: #fff;
2284
2284
  }
2285
2285
  .notification.is-primary.is-light {
2286
- background-color: #effaf5;
2287
- color: #257953;
2286
+ background-color: #ebfffc;
2287
+ color: #00947e;
2288
2288
  }
2289
2289
  .notification.is-link {
2290
2290
  background-color: #0a0a0a;
@@ -2303,7 +2303,7 @@ div.icon-text {
2303
2303
  color: #296fa8;
2304
2304
  }
2305
2305
  .notification.is-success {
2306
- background-color: hsl(153, 53%, 53%);
2306
+ background-color: #48c78e;
2307
2307
  color: #fff;
2308
2308
  }
2309
2309
  .notification.is-success.is-light {
@@ -2400,16 +2400,16 @@ div.icon-text {
2400
2400
  background-image: linear-gradient(to right, hsl(0, 0%, 21%) 30%, hsl(0, 0%, 93%) 30%);
2401
2401
  }
2402
2402
  .progress.is-primary::-webkit-progress-value {
2403
- background-color: #48c78e;
2403
+ background-color: hsl(171, 100%, 41%);
2404
2404
  }
2405
2405
  .progress.is-primary::-moz-progress-bar {
2406
- background-color: #48c78e;
2406
+ background-color: hsl(171, 100%, 41%);
2407
2407
  }
2408
2408
  .progress.is-primary::-ms-fill {
2409
- background-color: #48c78e;
2409
+ background-color: hsl(171, 100%, 41%);
2410
2410
  }
2411
2411
  .progress.is-primary:indeterminate {
2412
- background-image: linear-gradient(to right, #48c78e 30%, hsl(0, 0%, 93%) 30%);
2412
+ background-image: linear-gradient(to right, hsl(171, 100%, 41%) 30%, hsl(0, 0%, 93%) 30%);
2413
2413
  }
2414
2414
  .progress.is-link::-webkit-progress-value {
2415
2415
  background-color: #0a0a0a;
@@ -2436,16 +2436,16 @@ div.icon-text {
2436
2436
  background-image: linear-gradient(to right, hsl(207, 61%, 53%) 30%, hsl(0, 0%, 93%) 30%);
2437
2437
  }
2438
2438
  .progress.is-success::-webkit-progress-value {
2439
- background-color: hsl(153, 53%, 53%);
2439
+ background-color: #48c78e;
2440
2440
  }
2441
2441
  .progress.is-success::-moz-progress-bar {
2442
- background-color: hsl(153, 53%, 53%);
2442
+ background-color: #48c78e;
2443
2443
  }
2444
2444
  .progress.is-success::-ms-fill {
2445
- background-color: hsl(153, 53%, 53%);
2445
+ background-color: #48c78e;
2446
2446
  }
2447
2447
  .progress.is-success:indeterminate {
2448
- background-image: linear-gradient(to right, hsl(153, 53%, 53%) 30%, hsl(0, 0%, 93%) 30%);
2448
+ background-image: linear-gradient(to right, #48c78e 30%, hsl(0, 0%, 93%) 30%);
2449
2449
  }
2450
2450
  .progress.is-warning::-webkit-progress-value {
2451
2451
  background-color: hsl(44, 100%, 77%);
@@ -2546,8 +2546,8 @@ div.icon-text {
2546
2546
  }
2547
2547
  .table td.is-primary,
2548
2548
  .table th.is-primary {
2549
- background-color: #48c78e;
2550
- border-color: #48c78e;
2549
+ background-color: hsl(171, 100%, 41%);
2550
+ border-color: hsl(171, 100%, 41%);
2551
2551
  color: #fff;
2552
2552
  }
2553
2553
  .table td.is-link,
@@ -2564,8 +2564,8 @@ div.icon-text {
2564
2564
  }
2565
2565
  .table td.is-success,
2566
2566
  .table th.is-success {
2567
- background-color: hsl(153, 53%, 53%);
2568
- border-color: hsl(153, 53%, 53%);
2567
+ background-color: #48c78e;
2568
+ border-color: #48c78e;
2569
2569
  color: #fff;
2570
2570
  }
2571
2571
  .table td.is-warning,
@@ -2587,7 +2587,7 @@ div.icon-text {
2587
2587
  }
2588
2588
  .table td.is-selected,
2589
2589
  .table th.is-selected {
2590
- background-color: #48c78e;
2590
+ background-color: hsl(171, 100%, 41%);
2591
2591
  color: #fff;
2592
2592
  }
2593
2593
  .table td.is-selected a,
@@ -2607,7 +2607,7 @@ div.icon-text {
2607
2607
  text-align: left;
2608
2608
  }
2609
2609
  .table tr.is-selected {
2610
- background-color: #48c78e;
2610
+ background-color: hsl(171, 100%, 41%);
2611
2611
  color: #fff;
2612
2612
  }
2613
2613
  .table tr.is-selected a,
@@ -2765,12 +2765,12 @@ div.icon-text {
2765
2765
  color: #fff;
2766
2766
  }
2767
2767
  .tag:not(body).is-primary {
2768
- background-color: #48c78e;
2768
+ background-color: hsl(171, 100%, 41%);
2769
2769
  color: #fff;
2770
2770
  }
2771
2771
  .tag:not(body).is-primary.is-light {
2772
- background-color: #effaf5;
2773
- color: #257953;
2772
+ background-color: #ebfffc;
2773
+ color: #00947e;
2774
2774
  }
2775
2775
  .tag:not(body).is-link {
2776
2776
  background-color: #0a0a0a;
@@ -2789,7 +2789,7 @@ div.icon-text {
2789
2789
  color: #296fa8;
2790
2790
  }
2791
2791
  .tag:not(body).is-success {
2792
- background-color: hsl(153, 53%, 53%);
2792
+ background-color: #48c78e;
2793
2793
  color: #fff;
2794
2794
  }
2795
2795
  .tag:not(body).is-success.is-light {
@@ -3065,10 +3065,10 @@ a.tag:hover {
3065
3065
  box-shadow: 0 rgba(54, 54, 54, 0.25);
3066
3066
  }
3067
3067
  .is-primary.textarea, .is-primary.input {
3068
- border-color: #48c78e;
3068
+ border-color: hsl(171, 100%, 41%);
3069
3069
  }
3070
3070
  .is-primary.textarea:focus, .is-primary.input:focus, .is-primary.is-focused.textarea, .is-primary.is-focused.input, .is-primary.textarea:active, .is-primary.input:active, .is-primary.is-active.textarea, .is-primary.is-active.input {
3071
- box-shadow: 0 rgba(72, 199, 142, 0.25);
3071
+ box-shadow: 0 rgba(0, 209, 178, 0.25);
3072
3072
  }
3073
3073
  .is-link.textarea, .is-link.input {
3074
3074
  border-color: #0a0a0a;
@@ -3083,7 +3083,7 @@ a.tag:hover {
3083
3083
  box-shadow: 0 rgba(62, 142, 208, 0.25);
3084
3084
  }
3085
3085
  .is-success.textarea, .is-success.input {
3086
- border-color: hsl(153, 53%, 53%);
3086
+ border-color: #48c78e;
3087
3087
  }
3088
3088
  .is-success.textarea:focus, .is-success.input:focus, .is-success.is-focused.textarea, .is-success.is-focused.input, .is-success.textarea:active, .is-success.input:active, .is-success.is-active.textarea, .is-success.is-active.input {
3089
3089
  box-shadow: 0 rgba(72, 199, 142, 0.25);
@@ -3266,16 +3266,16 @@ a.tag:hover {
3266
3266
  box-shadow: 0 rgba(54, 54, 54, 0.25);
3267
3267
  }
3268
3268
  .select.is-primary:not(:hover)::after {
3269
- border-color: #48c78e;
3269
+ border-color: hsl(171, 100%, 41%);
3270
3270
  }
3271
3271
  .select.is-primary select {
3272
- border-color: #48c78e;
3272
+ border-color: hsl(171, 100%, 41%);
3273
3273
  }
3274
3274
  .select.is-primary select:hover, .select.is-primary select.is-hovered {
3275
- border-color: #3abc81;
3275
+ border-color: #00b89c;
3276
3276
  }
3277
3277
  .select.is-primary select:focus, .select.is-primary select.is-focused, .select.is-primary select:active, .select.is-primary select.is-active {
3278
- box-shadow: 0 rgba(72, 199, 142, 0.25);
3278
+ box-shadow: 0 rgba(0, 209, 178, 0.25);
3279
3279
  }
3280
3280
  .select.is-link:not(:hover)::after {
3281
3281
  border-color: #0a0a0a;
@@ -3302,13 +3302,13 @@ a.tag:hover {
3302
3302
  box-shadow: 0 rgba(62, 142, 208, 0.25);
3303
3303
  }
3304
3304
  .select.is-success:not(:hover)::after {
3305
- border-color: hsl(153, 53%, 53%);
3305
+ border-color: #48c78e;
3306
3306
  }
3307
3307
  .select.is-success select {
3308
- border-color: hsl(153, 53%, 53%);
3308
+ border-color: #48c78e;
3309
3309
  }
3310
3310
  .select.is-success select:hover, .select.is-success select.is-hovered {
3311
- border-color: #3abb81;
3311
+ border-color: #3abc81;
3312
3312
  }
3313
3313
  .select.is-success select:focus, .select.is-success select.is-focused, .select.is-success select:active, .select.is-success select.is-active {
3314
3314
  box-shadow: 0 rgba(72, 199, 142, 0.25);
@@ -3461,22 +3461,22 @@ a.tag:hover {
3461
3461
  color: #fff;
3462
3462
  }
3463
3463
  .file.is-primary .file-cta {
3464
- background-color: #48c78e;
3464
+ background-color: hsl(171, 100%, 41%);
3465
3465
  border-color: transparent;
3466
3466
  color: #fff;
3467
3467
  }
3468
3468
  .file.is-primary:hover .file-cta, .file.is-primary.is-hovered .file-cta {
3469
- background-color: #3ec488;
3469
+ background-color: #00c4a7;
3470
3470
  border-color: transparent;
3471
3471
  color: #fff;
3472
3472
  }
3473
3473
  .file.is-primary:focus .file-cta, .file.is-primary.is-focused .file-cta {
3474
3474
  border-color: transparent;
3475
- box-shadow: 0 0 0.5em rgba(72, 199, 142, 0.25);
3475
+ box-shadow: 0 0 0.5em rgba(0, 209, 178, 0.25);
3476
3476
  color: #fff;
3477
3477
  }
3478
3478
  .file.is-primary:active .file-cta, .file.is-primary.is-active .file-cta {
3479
- background-color: #3abc81;
3479
+ background-color: #00b89c;
3480
3480
  border-color: transparent;
3481
3481
  color: #fff;
3482
3482
  }
@@ -3521,12 +3521,12 @@ a.tag:hover {
3521
3521
  color: #fff;
3522
3522
  }
3523
3523
  .file.is-success .file-cta {
3524
- background-color: hsl(153, 53%, 53%);
3524
+ background-color: #48c78e;
3525
3525
  border-color: transparent;
3526
3526
  color: #fff;
3527
3527
  }
3528
3528
  .file.is-success:hover .file-cta, .file.is-success.is-hovered .file-cta {
3529
- background-color: #3ec487;
3529
+ background-color: #3ec488;
3530
3530
  border-color: transparent;
3531
3531
  color: #fff;
3532
3532
  }
@@ -3536,7 +3536,7 @@ a.tag:hover {
3536
3536
  color: #fff;
3537
3537
  }
3538
3538
  .file.is-success:active .file-cta, .file.is-success.is-active .file-cta {
3539
- background-color: #3abb81;
3539
+ background-color: #3abc81;
3540
3540
  border-color: transparent;
3541
3541
  color: #fff;
3542
3542
  }
@@ -3776,7 +3776,7 @@ a.tag:hover {
3776
3776
  color: hsl(0, 0%, 21%);
3777
3777
  }
3778
3778
  .help.is-primary {
3779
- color: #48c78e;
3779
+ color: hsl(171, 100%, 41%);
3780
3780
  }
3781
3781
  .help.is-link {
3782
3782
  color: #0a0a0a;
@@ -3785,7 +3785,7 @@ a.tag:hover {
3785
3785
  color: hsl(207, 61%, 53%);
3786
3786
  }
3787
3787
  .help.is-success {
3788
- color: hsl(153, 53%, 53%);
3788
+ color: #48c78e;
3789
3789
  }
3790
3790
  .help.is-warning {
3791
3791
  color: hsl(44, 100%, 77%);
@@ -4537,15 +4537,15 @@ button.dropdown-item.is-active {
4537
4537
  border-color: hsl(0, 0%, 21%);
4538
4538
  }
4539
4539
  .message.is-primary {
4540
- background-color: #effaf5;
4540
+ background-color: #ebfffc;
4541
4541
  }
4542
4542
  .message.is-primary .message-header {
4543
- background-color: #48c78e;
4543
+ background-color: hsl(171, 100%, 41%);
4544
4544
  color: #fff;
4545
4545
  }
4546
4546
  .message.is-primary .message-body {
4547
- border-color: #48c78e;
4548
- color: #257953;
4547
+ border-color: hsl(171, 100%, 41%);
4548
+ color: #00947e;
4549
4549
  }
4550
4550
  .message.is-link {
4551
4551
  background-color: whitesmoke;
@@ -4573,11 +4573,11 @@ button.dropdown-item.is-active {
4573
4573
  background-color: #effaf5;
4574
4574
  }
4575
4575
  .message.is-success .message-header {
4576
- background-color: hsl(153, 53%, 53%);
4576
+ background-color: #48c78e;
4577
4577
  color: #fff;
4578
4578
  }
4579
4579
  .message.is-success .message-body {
4580
- border-color: hsl(153, 53%, 53%);
4580
+ border-color: #48c78e;
4581
4581
  color: #257953;
4582
4582
  }
4583
4583
  .message.is-warning {
@@ -4967,7 +4967,7 @@ button.dropdown-item.is-active {
4967
4967
  }
4968
4968
  }
4969
4969
  .navbar.is-primary {
4970
- background-color: #48c78e;
4970
+ background-color: hsl(171, 100%, 41%);
4971
4971
  color: #fff;
4972
4972
  }
4973
4973
  .navbar.is-primary .navbar-brand > .navbar-item,
@@ -4978,7 +4978,7 @@ button.dropdown-item.is-active {
4978
4978
  .navbar.is-primary .navbar-brand .navbar-link:focus,
4979
4979
  .navbar.is-primary .navbar-brand .navbar-link:hover,
4980
4980
  .navbar.is-primary .navbar-brand .navbar-link.is-active {
4981
- background-color: #3abc81;
4981
+ background-color: #00b89c;
4982
4982
  color: #fff;
4983
4983
  }
4984
4984
  .navbar.is-primary .navbar-brand .navbar-link::after {
@@ -5004,7 +5004,7 @@ button.dropdown-item.is-active {
5004
5004
  .navbar.is-primary .navbar-end .navbar-link:focus,
5005
5005
  .navbar.is-primary .navbar-end .navbar-link:hover,
5006
5006
  .navbar.is-primary .navbar-end .navbar-link.is-active {
5007
- background-color: #3abc81;
5007
+ background-color: #00b89c;
5008
5008
  color: #fff;
5009
5009
  }
5010
5010
  .navbar.is-primary .navbar-start .navbar-link::after,
@@ -5014,11 +5014,11 @@ button.dropdown-item.is-active {
5014
5014
  .navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,
5015
5015
  .navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,
5016
5016
  .navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link {
5017
- background-color: #3abc81;
5017
+ background-color: #00b89c;
5018
5018
  color: #fff;
5019
5019
  }
5020
5020
  .navbar.is-primary .navbar-dropdown a.navbar-item.is-active {
5021
- background-color: #48c78e;
5021
+ background-color: hsl(171, 100%, 41%);
5022
5022
  color: #fff;
5023
5023
  }
5024
5024
  }
@@ -5135,7 +5135,7 @@ button.dropdown-item.is-active {
5135
5135
  }
5136
5136
  }
5137
5137
  .navbar.is-success {
5138
- background-color: hsl(153, 53%, 53%);
5138
+ background-color: #48c78e;
5139
5139
  color: #fff;
5140
5140
  }
5141
5141
  .navbar.is-success .navbar-brand > .navbar-item,
@@ -5146,7 +5146,7 @@ button.dropdown-item.is-active {
5146
5146
  .navbar.is-success .navbar-brand .navbar-link:focus,
5147
5147
  .navbar.is-success .navbar-brand .navbar-link:hover,
5148
5148
  .navbar.is-success .navbar-brand .navbar-link.is-active {
5149
- background-color: #3abb81;
5149
+ background-color: #3abc81;
5150
5150
  color: #fff;
5151
5151
  }
5152
5152
  .navbar.is-success .navbar-brand .navbar-link::after {
@@ -5172,7 +5172,7 @@ button.dropdown-item.is-active {
5172
5172
  .navbar.is-success .navbar-end .navbar-link:focus,
5173
5173
  .navbar.is-success .navbar-end .navbar-link:hover,
5174
5174
  .navbar.is-success .navbar-end .navbar-link.is-active {
5175
- background-color: #3abb81;
5175
+ background-color: #3abc81;
5176
5176
  color: #fff;
5177
5177
  }
5178
5178
  .navbar.is-success .navbar-start .navbar-link::after,
@@ -5182,11 +5182,11 @@ button.dropdown-item.is-active {
5182
5182
  .navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,
5183
5183
  .navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,
5184
5184
  .navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link {
5185
- background-color: #3abb81;
5185
+ background-color: #3abc81;
5186
5186
  color: #fff;
5187
5187
  }
5188
5188
  .navbar.is-success .navbar-dropdown a.navbar-item.is-active {
5189
- background-color: hsl(153, 53%, 53%);
5189
+ background-color: #48c78e;
5190
5190
  color: #fff;
5191
5191
  }
5192
5192
  }
@@ -5943,14 +5943,14 @@ a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover, a.navbar-i
5943
5943
  color: hsl(0, 0%, 21%);
5944
5944
  }
5945
5945
  .panel.is-primary .panel-heading {
5946
- background-color: #48c78e;
5946
+ background-color: hsl(171, 100%, 41%);
5947
5947
  color: #fff;
5948
5948
  }
5949
5949
  .panel.is-primary .panel-tabs a.is-active {
5950
- border-bottom-color: #48c78e;
5950
+ border-bottom-color: hsl(171, 100%, 41%);
5951
5951
  }
5952
5952
  .panel.is-primary .panel-block.is-active .panel-icon {
5953
- color: #48c78e;
5953
+ color: hsl(171, 100%, 41%);
5954
5954
  }
5955
5955
  .panel.is-link .panel-heading {
5956
5956
  background-color: #0a0a0a;
@@ -5973,14 +5973,14 @@ a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover, a.navbar-i
5973
5973
  color: hsl(207, 61%, 53%);
5974
5974
  }
5975
5975
  .panel.is-success .panel-heading {
5976
- background-color: hsl(153, 53%, 53%);
5976
+ background-color: #48c78e;
5977
5977
  color: #fff;
5978
5978
  }
5979
5979
  .panel.is-success .panel-tabs a.is-active {
5980
- border-bottom-color: hsl(153, 53%, 53%);
5980
+ border-bottom-color: #48c78e;
5981
5981
  }
5982
5982
  .panel.is-success .panel-block.is-active .panel-icon {
5983
- color: hsl(153, 53%, 53%);
5983
+ color: #48c78e;
5984
5984
  }
5985
5985
  .panel.is-warning .panel-heading {
5986
5986
  background-color: hsl(44, 100%, 77%);
@@ -8014,39 +8014,39 @@ a.has-text-dark:hover, a.has-text-dark:focus {
8014
8014
  }
8015
8015
 
8016
8016
  .has-text-primary {
8017
- color: #48c78e !important;
8017
+ color: hsl(171, 100%, 41%) !important;
8018
8018
  }
8019
8019
 
8020
8020
  a.has-text-primary:hover, a.has-text-primary:focus {
8021
- color: #34a874 !important;
8021
+ color: #009e86 !important;
8022
8022
  }
8023
8023
 
8024
8024
  .has-background-primary {
8025
- background-color: #48c78e !important;
8025
+ background-color: hsl(171, 100%, 41%) !important;
8026
8026
  }
8027
8027
 
8028
8028
  .has-text-primary-light {
8029
- color: #effaf5 !important;
8029
+ color: #ebfffc !important;
8030
8030
  }
8031
8031
 
8032
8032
  a.has-text-primary-light:hover, a.has-text-primary-light:focus {
8033
- color: #c8eedd !important;
8033
+ color: #b8fff4 !important;
8034
8034
  }
8035
8035
 
8036
8036
  .has-background-primary-light {
8037
- background-color: #effaf5 !important;
8037
+ background-color: #ebfffc !important;
8038
8038
  }
8039
8039
 
8040
8040
  .has-text-primary-dark {
8041
- color: #257953 !important;
8041
+ color: #00947e !important;
8042
8042
  }
8043
8043
 
8044
8044
  a.has-text-primary-dark:hover, a.has-text-primary-dark:focus {
8045
- color: #31a06e !important;
8045
+ color: #00c7a9 !important;
8046
8046
  }
8047
8047
 
8048
8048
  .has-background-primary-dark {
8049
- background-color: #257953 !important;
8049
+ background-color: #00947e !important;
8050
8050
  }
8051
8051
 
8052
8052
  .has-text-link {
@@ -8122,15 +8122,15 @@ a.has-text-info-dark:hover, a.has-text-info-dark:focus {
8122
8122
  }
8123
8123
 
8124
8124
  .has-text-success {
8125
- color: hsl(153, 53%, 53%) !important;
8125
+ color: #48c78e !important;
8126
8126
  }
8127
8127
 
8128
8128
  a.has-text-success:hover, a.has-text-success:focus {
8129
- color: #34a873 !important;
8129
+ color: #34a874 !important;
8130
8130
  }
8131
8131
 
8132
8132
  .has-background-success {
8133
- background-color: hsl(153, 53%, 53%) !important;
8133
+ background-color: #48c78e !important;
8134
8134
  }
8135
8135
 
8136
8136
  .has-text-success-light {
@@ -10082,7 +10082,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
10082
10082
  }
10083
10083
  }
10084
10084
  .hero.is-primary {
10085
- background-color: #48c78e;
10085
+ background-color: hsl(171, 100%, 41%);
10086
10086
  color: #fff;
10087
10087
  }
10088
10088
  .hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
@@ -10101,7 +10101,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
10101
10101
  }
10102
10102
  @media screen and (max-width: 1023px) {
10103
10103
  .hero.is-primary .navbar-menu {
10104
- background-color: #48c78e;
10104
+ background-color: hsl(171, 100%, 41%);
10105
10105
  }
10106
10106
  }
10107
10107
  .hero.is-primary .navbar-item,
@@ -10111,7 +10111,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
10111
10111
  .hero.is-primary a.navbar-item:hover, .hero.is-primary a.navbar-item.is-active,
10112
10112
  .hero.is-primary .navbar-link:hover,
10113
10113
  .hero.is-primary .navbar-link.is-active {
10114
- background-color: #3abc81;
10114
+ background-color: #00b89c;
10115
10115
  color: #fff;
10116
10116
  }
10117
10117
  .hero.is-primary .tabs a {
@@ -10122,7 +10122,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
10122
10122
  opacity: 1;
10123
10123
  }
10124
10124
  .hero.is-primary .tabs li.is-active a {
10125
- color: #48c78e !important;
10125
+ color: hsl(171, 100%, 41%) !important;
10126
10126
  opacity: 1;
10127
10127
  }
10128
10128
  .hero.is-primary .tabs.is-boxed a, .hero.is-primary .tabs.is-toggle a {
@@ -10134,14 +10134,14 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
10134
10134
  .hero.is-primary .tabs.is-boxed li.is-active a, .hero.is-primary .tabs.is-boxed li.is-active a:hover, .hero.is-primary .tabs.is-toggle li.is-active a, .hero.is-primary .tabs.is-toggle li.is-active a:hover {
10135
10135
  background-color: #fff;
10136
10136
  border-color: #fff;
10137
- color: #48c78e;
10137
+ color: hsl(171, 100%, 41%);
10138
10138
  }
10139
10139
  .hero.is-primary.is-bold {
10140
- background-image: linear-gradient(141deg, #29b35e 0%, #48c78e 71%, #56d2af 100%);
10140
+ background-image: linear-gradient(141deg, #009e6c 0%, hsl(171, 100%, 41%) 71%, #00e7eb 100%);
10141
10141
  }
10142
10142
  @media screen and (max-width: 768px) {
10143
10143
  .hero.is-primary.is-bold .navbar-menu {
10144
- background-image: linear-gradient(141deg, #29b35e 0%, #48c78e 71%, #56d2af 100%);
10144
+ background-image: linear-gradient(141deg, #009e6c 0%, hsl(171, 100%, 41%) 71%, #00e7eb 100%);
10145
10145
  }
10146
10146
  }
10147
10147
  .hero.is-link {
@@ -10271,7 +10271,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
10271
10271
  }
10272
10272
  }
10273
10273
  .hero.is-success {
10274
- background-color: hsl(153, 53%, 53%);
10274
+ background-color: #48c78e;
10275
10275
  color: #fff;
10276
10276
  }
10277
10277
  .hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
@@ -10290,7 +10290,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
10290
10290
  }
10291
10291
  @media screen and (max-width: 1023px) {
10292
10292
  .hero.is-success .navbar-menu {
10293
- background-color: hsl(153, 53%, 53%);
10293
+ background-color: #48c78e;
10294
10294
  }
10295
10295
  }
10296
10296
  .hero.is-success .navbar-item,
@@ -10300,7 +10300,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
10300
10300
  .hero.is-success a.navbar-item:hover, .hero.is-success a.navbar-item.is-active,
10301
10301
  .hero.is-success .navbar-link:hover,
10302
10302
  .hero.is-success .navbar-link.is-active {
10303
- background-color: #3abb81;
10303
+ background-color: #3abc81;
10304
10304
  color: #fff;
10305
10305
  }
10306
10306
  .hero.is-success .tabs a {
@@ -10311,7 +10311,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
10311
10311
  opacity: 1;
10312
10312
  }
10313
10313
  .hero.is-success .tabs li.is-active a {
10314
- color: hsl(153, 53%, 53%) !important;
10314
+ color: #48c78e !important;
10315
10315
  opacity: 1;
10316
10316
  }
10317
10317
  .hero.is-success .tabs.is-boxed a, .hero.is-success .tabs.is-toggle a {
@@ -10323,14 +10323,14 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
10323
10323
  .hero.is-success .tabs.is-boxed li.is-active a, .hero.is-success .tabs.is-boxed li.is-active a:hover, .hero.is-success .tabs.is-toggle li.is-active a, .hero.is-success .tabs.is-toggle li.is-active a:hover {
10324
10324
  background-color: #fff;
10325
10325
  border-color: #fff;
10326
- color: hsl(153, 53%, 53%);
10326
+ color: #48c78e;
10327
10327
  }
10328
10328
  .hero.is-success.is-bold {
10329
- background-image: linear-gradient(141deg, #29b35e 0%, hsl(153, 53%, 53%) 71%, #56d2af 100%);
10329
+ background-image: linear-gradient(141deg, #29b35e 0%, #48c78e 71%, #56d2af 100%);
10330
10330
  }
10331
10331
  @media screen and (max-width: 768px) {
10332
10332
  .hero.is-success.is-bold .navbar-menu {
10333
- background-image: linear-gradient(141deg, #29b35e 0%, hsl(153, 53%, 53%) 71%, #56d2af 100%);
10333
+ background-image: linear-gradient(141deg, #29b35e 0%, #48c78e 71%, #56d2af 100%);
10334
10334
  }
10335
10335
  }
10336
10336
  .hero.is-warning {