@obosbbl/grunnmuren-tailwind 0.8.5 → 0.9.0
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.
- package/package.json +3 -3
- package/tailwind-base.cjs +23 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@obosbbl/grunnmuren-tailwind",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "Grunnmuren Tailwind preset",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"@tailwindcss/typography": "0.5.9"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"tailwindcss": "3.2
|
|
23
|
-
"postcss": "8.4.
|
|
22
|
+
"tailwindcss": "3.3.2",
|
|
23
|
+
"postcss": "8.4.23"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
26
|
"tailwindcss": "^3.2"
|
package/tailwind-base.cjs
CHANGED
|
@@ -278,7 +278,7 @@ module.exports = (userOptions) => {
|
|
|
278
278
|
a: {
|
|
279
279
|
'@apply underline': {},
|
|
280
280
|
},
|
|
281
|
-
'::selection': { '@apply bg-
|
|
281
|
+
'::selection': { '@apply bg-mint text-black': {} },
|
|
282
282
|
// Remove the disclosure triangle in Safari if apply the `list-none` utility to the summary element
|
|
283
283
|
'summary.list-none::-webkit-details-marker': {
|
|
284
284
|
display: 'none',
|
|
@@ -396,30 +396,44 @@ module.exports = (userOptions) => {
|
|
|
396
396
|
black: '#333',
|
|
397
397
|
white: '#fff',
|
|
398
398
|
gray: {
|
|
399
|
-
//
|
|
400
|
-
concrete: '#f1f1f1',
|
|
401
|
-
// Gray
|
|
399
|
+
// Dark Gray
|
|
402
400
|
dark: '#595959',
|
|
403
|
-
//
|
|
401
|
+
// gray
|
|
404
402
|
DEFAULT: '#818181',
|
|
405
403
|
// Light gray
|
|
406
404
|
light: '#E6E6E6',
|
|
405
|
+
// Lightest gray
|
|
406
|
+
lightest: '#f1f1f1',
|
|
407
|
+
// DEPRECATED concrete
|
|
408
|
+
concrete: '#f1f1f1',
|
|
409
|
+
},
|
|
410
|
+
sky: {
|
|
411
|
+
DEFAULT: '#BEDFEC',
|
|
412
|
+
light: '#DEEFF5',
|
|
413
|
+
lightest: '#EBF5F9',
|
|
414
|
+
},
|
|
415
|
+
mint: {
|
|
416
|
+
DEFAULT: '#CDECE2',
|
|
417
|
+
light: '#E6F5F0',
|
|
418
|
+
lightest: '#F0F9F6',
|
|
407
419
|
},
|
|
408
420
|
blue: {
|
|
409
|
-
// light blue
|
|
421
|
+
// DEPRECATED light blue
|
|
410
422
|
lightest: '#DEEFF5',
|
|
411
|
-
// OBOS Sky
|
|
423
|
+
// DEPRECATED OBOS Sky
|
|
412
424
|
light: '#BEDFEC',
|
|
425
|
+
|
|
413
426
|
// OBOS Blue/Primary brand
|
|
414
427
|
DEFAULT: '#0047BA',
|
|
415
428
|
// OBOS Ocean
|
|
416
429
|
dark: '#002169',
|
|
417
430
|
},
|
|
418
431
|
green: {
|
|
419
|
-
// light green
|
|
432
|
+
// DEPRECATED light green
|
|
420
433
|
lightest: '#E6F5F0',
|
|
421
|
-
// OBOS Mint
|
|
434
|
+
// DEPRECATED OBOS Mint
|
|
422
435
|
light: '#CDECE2',
|
|
436
|
+
|
|
423
437
|
// OBOS Green/Primary brand
|
|
424
438
|
DEFAULT: '#008761',
|
|
425
439
|
// OBOS Forest
|