@digdir/designsystemet 1.0.3 → 1.0.4
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/dist/bin/designsystemet.js +4264 -45
- package/dist/bin/options.js +5 -4
- package/dist/src/colors/colorMetadata.js +5 -4
- package/dist/src/colors/index.js +470 -4
- package/dist/src/colors/theme.js +286 -20
- package/dist/src/colors/utils.js +16 -15
- package/dist/{bin → src}/config.d.ts +46 -1
- package/dist/src/config.d.ts.map +1 -0
- package/dist/src/config.js +377 -0
- package/dist/src/index.js +3666 -2
- package/dist/src/migrations/beta-to-v1.js +85 -4
- package/dist/src/migrations/codemods/css/plugins.js +5 -4
- package/dist/src/migrations/codemods/css/run.d.ts.map +1 -1
- package/dist/src/migrations/codemods/css/run.js +18 -4
- package/dist/src/migrations/color-rename-next49.js +77 -6
- package/dist/src/migrations/index.d.ts +0 -1
- package/dist/src/migrations/index.d.ts.map +1 -1
- package/dist/src/migrations/index.js +461 -6
- package/dist/src/scripts/createJsonSchema.js +1608 -4
- package/dist/src/scripts/update-design-tokens.d.ts +2 -0
- package/dist/src/scripts/update-design-tokens.d.ts.map +1 -0
- package/dist/src/scripts/update-design-tokens.js +36 -0
- package/dist/src/{tokens/template.d.ts → scripts/update-template.d.ts} +1 -1
- package/dist/src/scripts/update-template.d.ts.map +1 -0
- package/dist/src/scripts/update-template.js +1200 -0
- package/dist/src/tokens/build.d.ts +2 -19
- package/dist/src/tokens/build.d.ts.map +1 -1
- package/dist/src/tokens/build.js +1511 -70
- package/dist/src/tokens/create/defaults.d.ts +7 -0
- package/dist/src/tokens/create/defaults.d.ts.map +1 -0
- package/dist/src/tokens/create/defaults.js +994 -0
- package/dist/src/tokens/create/generators/$designsystemet.d.ts +5 -0
- package/dist/src/tokens/create/generators/$designsystemet.d.ts.map +1 -0
- package/dist/src/tokens/create/generators/$designsystemet.js +100 -0
- package/dist/src/tokens/create/generators/$metadata.d.ts +8 -0
- package/dist/src/tokens/create/generators/$metadata.d.ts.map +1 -0
- package/dist/src/tokens/{write/generate$metadata.js → create/generators/$metadata.js} +3 -2
- package/dist/src/tokens/create/generators/$themes.d.ts +12 -0
- package/dist/src/tokens/create/generators/$themes.d.ts.map +1 -0
- package/dist/src/tokens/create/generators/$themes.js +333 -0
- package/dist/src/tokens/create/generators/color.d.ts +5 -0
- package/dist/src/tokens/create/generators/color.d.ts.map +1 -0
- package/dist/src/tokens/create/generators/color.js +374 -0
- package/dist/src/tokens/create/generators/semantic.d.ts +296 -0
- package/dist/src/tokens/create/generators/semantic.d.ts.map +1 -0
- package/dist/src/tokens/create/generators/semantic.js +483 -0
- package/dist/src/tokens/create/generators/theme.d.ts +3 -0
- package/dist/src/tokens/create/generators/theme.d.ts.map +1 -0
- package/dist/src/tokens/create/generators/theme.js +168 -0
- package/dist/src/tokens/create/generators/typography.d.ts +3 -0
- package/dist/src/tokens/create/generators/typography.d.ts.map +1 -0
- package/dist/src/tokens/create/generators/typography.js +33 -0
- package/dist/src/tokens/{write.d.ts → create/write.d.ts} +2 -2
- package/dist/src/tokens/create/write.d.ts.map +1 -0
- package/dist/src/tokens/create/write.js +546 -0
- package/dist/src/tokens/create.d.ts +4 -2
- package/dist/src/tokens/create.d.ts.map +1 -1
- package/dist/src/tokens/create.js +2049 -59
- package/dist/src/tokens/format.d.ts +16 -0
- package/dist/src/tokens/format.d.ts.map +1 -0
- package/dist/src/tokens/format.js +3514 -0
- package/dist/src/tokens/index.d.ts +1 -0
- package/dist/src/tokens/index.d.ts.map +1 -1
- package/dist/src/tokens/index.js +3526 -2
- package/dist/src/tokens/process/configs/color.d.ts +12 -0
- package/dist/src/tokens/process/configs/color.d.ts.map +1 -0
- package/dist/src/tokens/process/configs/color.js +823 -0
- package/dist/src/tokens/process/configs/semantic.d.ts +3 -0
- package/dist/src/tokens/process/configs/semantic.d.ts.map +1 -0
- package/dist/src/tokens/process/configs/semantic.js +367 -0
- package/dist/src/tokens/process/configs/shared.d.ts +10 -0
- package/dist/src/tokens/process/configs/shared.d.ts.map +1 -0
- package/dist/src/tokens/process/configs/shared.js +99 -0
- package/dist/src/tokens/process/configs/storefront.d.ts +3 -0
- package/dist/src/tokens/process/configs/storefront.d.ts.map +1 -0
- package/dist/src/tokens/process/configs/storefront.js +220 -0
- package/dist/src/tokens/process/configs/typography.d.ts +3 -0
- package/dist/src/tokens/process/configs/typography.d.ts.map +1 -0
- package/dist/src/tokens/process/configs/typography.js +369 -0
- package/dist/src/tokens/{build → process}/configs.d.ts +3 -11
- package/dist/src/tokens/process/configs.d.ts.map +1 -0
- package/dist/src/tokens/process/configs.js +976 -0
- package/dist/src/tokens/process/formats/css/color.d.ts +4 -0
- package/dist/src/tokens/process/formats/css/color.d.ts.map +1 -0
- package/dist/src/tokens/process/formats/css/color.js +128 -0
- package/dist/src/tokens/process/formats/css/semantic.d.ts +17 -0
- package/dist/src/tokens/process/formats/css/semantic.d.ts.map +1 -0
- package/dist/src/tokens/process/formats/css/semantic.js +109 -0
- package/dist/src/tokens/process/formats/css/typography.d.ts +3 -0
- package/dist/src/tokens/process/formats/css/typography.d.ts.map +1 -0
- package/dist/src/tokens/process/formats/css/typography.js +32 -0
- package/dist/src/tokens/process/formats/css.d.ts +8 -0
- package/dist/src/tokens/process/formats/css.d.ts.map +1 -0
- package/dist/src/tokens/{build → process}/formats/css.js +94 -57
- package/dist/src/tokens/process/formats/js-tokens.d.ts.map +1 -0
- package/dist/src/tokens/process/formats/js-tokens.js +109 -0
- package/dist/src/tokens/process/platform.d.ts +87 -0
- package/dist/src/tokens/process/platform.d.ts.map +1 -0
- package/dist/src/tokens/process/platform.js +1090 -0
- package/dist/src/tokens/process/transformers.d.ts.map +1 -0
- package/dist/src/tokens/{build → process}/transformers.js +29 -6
- package/dist/src/tokens/{build → process}/utils/getMultidimensionalThemes.d.ts +3 -3
- package/dist/src/tokens/process/utils/getMultidimensionalThemes.d.ts.map +1 -0
- package/dist/src/tokens/process/utils/getMultidimensionalThemes.js +922 -0
- package/dist/src/tokens/template/design-tokens/primitives/globals.js +5 -0
- package/dist/src/tokens/template/design-tokens/primitives/modes/size/global.js +5 -0
- package/dist/src/tokens/template/design-tokens/primitives/modes/size/large.js +5 -0
- package/dist/src/tokens/template/design-tokens/primitives/modes/size/medium.js +5 -0
- package/dist/src/tokens/template/design-tokens/primitives/modes/size/small.js +5 -0
- package/dist/src/tokens/template/design-tokens/primitives/modes/typography/size/large.js +5 -0
- package/dist/src/tokens/template/design-tokens/primitives/modes/typography/size/medium.js +5 -0
- package/dist/src/tokens/template/design-tokens/primitives/modes/typography/size/small.js +5 -0
- package/dist/src/tokens/template/design-tokens/primitives/modes/typography/typography.template.js +5 -0
- package/dist/src/tokens/template/design-tokens/semantic/color.base.template.js +5 -0
- package/dist/src/tokens/template/design-tokens/semantic/color.template.js +5 -0
- package/dist/src/tokens/template/design-tokens/semantic/modes/color.template.js +5 -0
- package/dist/src/tokens/template/design-tokens/semantic/style.js +5 -0
- package/dist/src/tokens/template/design-tokens/themes/theme.base.template.js +5 -0
- package/dist/src/tokens/template/design-tokens/themes/theme.template.js +5 -0
- package/dist/src/tokens/types.d.ts +54 -38
- package/dist/src/tokens/types.d.ts.map +1 -1
- package/dist/src/tokens/types.js +8 -0
- package/dist/src/tokens/utils.d.ts +30 -5
- package/dist/src/tokens/utils.d.ts.map +1 -1
- package/dist/src/tokens/utils.js +36 -50
- package/dist/src/utils.d.ts +18 -0
- package/dist/src/utils.d.ts.map +1 -0
- package/dist/src/utils.js +63 -0
- package/dist/typography.template-4N5YLH7F.json +22 -0
- package/package.json +17 -16
- package/dist/bin/config.d.ts.map +0 -1
- package/dist/bin/config.js +0 -71
- package/dist/src/migrations/codemods/jsx/classname-prefix.d.ts +0 -10
- package/dist/src/migrations/codemods/jsx/classname-prefix.d.ts.map +0 -1
- package/dist/src/migrations/codemods/jsx/classname-prefix.js +0 -64
- package/dist/src/migrations/codemods/jsx/run.d.ts +0 -7
- package/dist/src/migrations/codemods/jsx/run.d.ts.map +0 -1
- package/dist/src/migrations/codemods/jsx/run.js +0 -22
- package/dist/src/migrations/react-beta-to-v1.d.ts +0 -3
- package/dist/src/migrations/react-beta-to-v1.d.ts.map +0 -1
- package/dist/src/migrations/react-beta-to-v1.js +0 -5
- package/dist/src/scripts/copy-internal-tokens.d.ts +0 -2
- package/dist/src/scripts/copy-internal-tokens.d.ts.map +0 -1
- package/dist/src/scripts/copy-internal-tokens.js +0 -28
- package/dist/src/tokens/build/configs.d.ts.map +0 -1
- package/dist/src/tokens/build/configs.js +0 -280
- package/dist/src/tokens/build/formats/css.d.ts +0 -53
- package/dist/src/tokens/build/formats/css.d.ts.map +0 -1
- package/dist/src/tokens/build/formats/js-tokens.d.ts.map +0 -1
- package/dist/src/tokens/build/formats/js-tokens.js +0 -48
- package/dist/src/tokens/build/transformers.d.ts.map +0 -1
- package/dist/src/tokens/build/types.d.ts +0 -48
- package/dist/src/tokens/build/types.d.ts.map +0 -1
- package/dist/src/tokens/build/types.js +0 -7
- package/dist/src/tokens/build/utils/entryfile.d.ts +0 -12
- package/dist/src/tokens/build/utils/entryfile.d.ts.map +0 -1
- package/dist/src/tokens/build/utils/entryfile.js +0 -67
- package/dist/src/tokens/build/utils/getMultidimensionalThemes.d.ts.map +0 -1
- package/dist/src/tokens/build/utils/getMultidimensionalThemes.js +0 -112
- package/dist/src/tokens/design-tokens/template/$metadata.json +0 -25
- package/dist/src/tokens/design-tokens/template/$themes.json +0 -1498
- package/dist/src/tokens/template.d.ts.map +0 -1
- package/dist/src/tokens/template.js +0 -99
- package/dist/src/tokens/write/generate$metadata.d.ts +0 -9
- package/dist/src/tokens/write/generate$metadata.d.ts.map +0 -1
- package/dist/src/tokens/write/generate$themes.d.ts +0 -12
- package/dist/src/tokens/write/generate$themes.d.ts.map +0 -1
- package/dist/src/tokens/write/generate$themes.js +0 -161
- package/dist/src/tokens/write.d.ts.map +0 -1
- package/dist/src/tokens/write.js +0 -177
- /package/dist/{src/tokens/design-tokens/template/semantic/color-base-file.json → color.base.template-M7BHS4OV.json} +0 -0
- /package/dist/{src/tokens/design-tokens/template/semantic/modes/category-color/category-color-template.json → color.template-LMPUQ72A.json} +0 -0
- /package/dist/{src/tokens/design-tokens/template/semantic/semantic-color-template.json → color.template-XQNSHLTU.json} +0 -0
- /package/dist/{src/tokens/design-tokens/default/primitives/modes/size/global.json → global-XVXVBKM6.json} +0 -0
- /package/dist/{src/tokens/design-tokens/default/primitives/globals.json → globals-76VAFMDF.json} +0 -0
- /package/dist/{src/tokens/design-tokens/default/primitives/modes/typography/size/large.json → large-CIIHO7AY.json} +0 -0
- /package/dist/{src/tokens/design-tokens/default/primitives/modes/size/large.json → large-UUOZ6DYI.json} +0 -0
- /package/dist/{src/tokens/design-tokens/default/primitives/modes/size/medium.json → medium-OQ7S7P4P.json} +0 -0
- /package/dist/{src/tokens/design-tokens/default/primitives/modes/typography/size/medium.json → medium-VSB2S4X3.json} +0 -0
- /package/dist/{src/tokens/design-tokens/default/primitives/modes/typography/size/small.json → small-AEXJ6U7Z.json} +0 -0
- /package/dist/{src/tokens/design-tokens/default/primitives/modes/size/small.json → small-ZY4KOJWX.json} +0 -0
- /package/dist/src/tokens/{build → process}/formats/js-tokens.d.ts +0 -0
- /package/dist/src/tokens/{build → process}/transformers.d.ts +0 -0
- /package/dist/{src/tokens/design-tokens/default/semantic/style.json → style-FP5XVCUD.json} +0 -0
- /package/dist/{src/tokens/design-tokens/template/themes/theme-base-file.json → theme.base.template-Y4RMFBQY.json} +0 -0
- /package/dist/{src/tokens/design-tokens/template/themes/theme-color-template.json → theme.template-CTQRNOMO.json} +0 -0
|
@@ -1,1498 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "8b2c8cc86611a34b135cb22948666779361fd729",
|
|
4
|
-
"name": "medium",
|
|
5
|
-
"$figmaStyleReferences": {},
|
|
6
|
-
"selectedTokenSets": {
|
|
7
|
-
"primitives/modes/size/medium": "source",
|
|
8
|
-
"primitives/modes/size/global": "enabled",
|
|
9
|
-
"primitives/modes/typography/size/medium": "enabled"
|
|
10
|
-
},
|
|
11
|
-
"$figmaCollectionId": "VariableCollectionId:36248:20757",
|
|
12
|
-
"$figmaModeId": "41630:1",
|
|
13
|
-
"$figmaVariableReferences": {
|
|
14
|
-
"font-size.1": "b16053371d400f6e865a57698519b78d6adb8aa6",
|
|
15
|
-
"font-size.2": "547170dd150be6b3a74de1bc2ee421ba40b9ed9a",
|
|
16
|
-
"font-size.3": "c7a841c5694c94f85089aa425f0de4010e5fe71d",
|
|
17
|
-
"font-size.4": "9499f40cb3873ccfa136f943dbf479e1ed0980eb",
|
|
18
|
-
"font-size.5": "428e13183c9e1c21a4ec5e651e4baba947a38bd9",
|
|
19
|
-
"font-size.6": "01dce7fd83742c2986baeda3c2202f9345acf5fa",
|
|
20
|
-
"font-size.7": "54633f9ab840c502b0984cb20888276c2f021360",
|
|
21
|
-
"font-size.8": "a298f78a4f1ed7171546a06ce6f74196867f462a",
|
|
22
|
-
"font-size.9": "7f1382abad418b3941b79731e871b641abebbcf7",
|
|
23
|
-
"font-size.10": "38a0bcc2952ba92e893293eaa1ca024bdc23d0d0",
|
|
24
|
-
"font-size.11": "347bbb6ecf0d21b6046a55b265e141749f069451",
|
|
25
|
-
"_size.0": "db5d3cb74ced9b5df367971881fc60662901cb5f",
|
|
26
|
-
"_size.1": "8574ccc778f88127b0e503b9f4270cee8ac07bea",
|
|
27
|
-
"_size.2": "e826c1174bf75cc8eaabddd3ee6dd3dd59e2c3cd",
|
|
28
|
-
"_size.3": "52325b1528e74c93d244c24ce33be7c61d97dce6",
|
|
29
|
-
"_size.4": "fc1ae6a081615cb898808f3f36f841593fae2c9b",
|
|
30
|
-
"_size.5": "ce889c0e000c40e6c9ac2882080f3d84e192b1a2",
|
|
31
|
-
"_size.6": "1d1d1c8f8a2bcc129ed4d3c29c220f41e60acb89",
|
|
32
|
-
"_size.7": "50853ccf4c596607803917729bf0510a5be18441",
|
|
33
|
-
"_size.8": "37be5287889e2fc796789f75e618445848aa64bb",
|
|
34
|
-
"_size.9": "5659f148afc31de2f124942280707e1518ce2b26",
|
|
35
|
-
"_size.10": "1bc7ae4831fa8f20f42bd65dda58c49912dd37ad",
|
|
36
|
-
"_size.11": "a587d8b489c006e3b2f9871225f0b93928c7111a",
|
|
37
|
-
"_size.12": "d31ff8a8ca5f0ce0cccf54b629a8bb7bd758ecf6",
|
|
38
|
-
"_size.13": "31c7166bdfbec5523a36a4490203e6464bb2f922",
|
|
39
|
-
"_size.14": "29e764bade4a858e4d59b8b1e13f3468561201ad",
|
|
40
|
-
"_size.15": "d08f3fbf817d252d557253c1a671007dc8471441",
|
|
41
|
-
"_size.18": "1a3958612165e85fefdb7fbaf5863e517342cd1f",
|
|
42
|
-
"_size.22": "4d164b5622c590ed2286a5a0372bb0ff516ef707",
|
|
43
|
-
"_size.26": "7fddc0a8ed0f1108e3a53b7c619ec12b0f9bf12f",
|
|
44
|
-
"_size.30": "ccdc8d1bcb7811581897286176b40dd68a5c615e",
|
|
45
|
-
"_size.mode-font-size": "a4d2c4228ebd72eb5a52b0856d06fc7c911140f8",
|
|
46
|
-
"_size.base": "87d2d80ae00975b4312c3577f8e820f65c3701af",
|
|
47
|
-
"_size.step": "d46cee0c021f49ef0d58c6f9ba8757f87de9ab6d"
|
|
48
|
-
},
|
|
49
|
-
"group": "Size"
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
"id": "d49b9eebeb48a4f165a74b7261733d0a73370f0e",
|
|
53
|
-
"name": "large",
|
|
54
|
-
"$figmaStyleReferences": {},
|
|
55
|
-
"selectedTokenSets": {
|
|
56
|
-
"primitives/modes/size/large": "source",
|
|
57
|
-
"primitives/modes/size/global": "enabled",
|
|
58
|
-
"primitives/modes/typography/size/large": "enabled"
|
|
59
|
-
},
|
|
60
|
-
"$figmaCollectionId": "VariableCollectionId:36248:20757",
|
|
61
|
-
"$figmaModeId": "41630:2",
|
|
62
|
-
"$figmaVariableReferences": {
|
|
63
|
-
"font-size.1": "b16053371d400f6e865a57698519b78d6adb8aa6",
|
|
64
|
-
"font-size.2": "547170dd150be6b3a74de1bc2ee421ba40b9ed9a",
|
|
65
|
-
"font-size.3": "c7a841c5694c94f85089aa425f0de4010e5fe71d",
|
|
66
|
-
"font-size.4": "9499f40cb3873ccfa136f943dbf479e1ed0980eb",
|
|
67
|
-
"font-size.5": "428e13183c9e1c21a4ec5e651e4baba947a38bd9",
|
|
68
|
-
"font-size.6": "01dce7fd83742c2986baeda3c2202f9345acf5fa",
|
|
69
|
-
"font-size.7": "54633f9ab840c502b0984cb20888276c2f021360",
|
|
70
|
-
"font-size.8": "a298f78a4f1ed7171546a06ce6f74196867f462a",
|
|
71
|
-
"font-size.9": "7f1382abad418b3941b79731e871b641abebbcf7",
|
|
72
|
-
"font-size.10": "38a0bcc2952ba92e893293eaa1ca024bdc23d0d0",
|
|
73
|
-
"font-size.11": "347bbb6ecf0d21b6046a55b265e141749f069451",
|
|
74
|
-
"_size.0": "db5d3cb74ced9b5df367971881fc60662901cb5f",
|
|
75
|
-
"_size.1": "8574ccc778f88127b0e503b9f4270cee8ac07bea",
|
|
76
|
-
"_size.2": "e826c1174bf75cc8eaabddd3ee6dd3dd59e2c3cd",
|
|
77
|
-
"_size.3": "52325b1528e74c93d244c24ce33be7c61d97dce6",
|
|
78
|
-
"_size.4": "fc1ae6a081615cb898808f3f36f841593fae2c9b",
|
|
79
|
-
"_size.5": "ce889c0e000c40e6c9ac2882080f3d84e192b1a2",
|
|
80
|
-
"_size.6": "1d1d1c8f8a2bcc129ed4d3c29c220f41e60acb89",
|
|
81
|
-
"_size.7": "50853ccf4c596607803917729bf0510a5be18441",
|
|
82
|
-
"_size.8": "37be5287889e2fc796789f75e618445848aa64bb",
|
|
83
|
-
"_size.9": "5659f148afc31de2f124942280707e1518ce2b26",
|
|
84
|
-
"_size.10": "1bc7ae4831fa8f20f42bd65dda58c49912dd37ad",
|
|
85
|
-
"_size.11": "a587d8b489c006e3b2f9871225f0b93928c7111a",
|
|
86
|
-
"_size.12": "d31ff8a8ca5f0ce0cccf54b629a8bb7bd758ecf6",
|
|
87
|
-
"_size.13": "31c7166bdfbec5523a36a4490203e6464bb2f922",
|
|
88
|
-
"_size.14": "29e764bade4a858e4d59b8b1e13f3468561201ad",
|
|
89
|
-
"_size.15": "d08f3fbf817d252d557253c1a671007dc8471441",
|
|
90
|
-
"_size.18": "1a3958612165e85fefdb7fbaf5863e517342cd1f",
|
|
91
|
-
"_size.22": "4d164b5622c590ed2286a5a0372bb0ff516ef707",
|
|
92
|
-
"_size.26": "7fddc0a8ed0f1108e3a53b7c619ec12b0f9bf12f",
|
|
93
|
-
"_size.30": "ccdc8d1bcb7811581897286176b40dd68a5c615e",
|
|
94
|
-
"_size.mode-font-size": "a4d2c4228ebd72eb5a52b0856d06fc7c911140f8",
|
|
95
|
-
"_size.base": "87d2d80ae00975b4312c3577f8e820f65c3701af",
|
|
96
|
-
"_size.step": "d46cee0c021f49ef0d58c6f9ba8757f87de9ab6d"
|
|
97
|
-
},
|
|
98
|
-
"group": "Size"
|
|
99
|
-
},
|
|
100
|
-
{
|
|
101
|
-
"id": "fb11567729c298ca37c9da4e3a27716a23480824",
|
|
102
|
-
"name": "small",
|
|
103
|
-
"$figmaStyleReferences": {},
|
|
104
|
-
"selectedTokenSets": {
|
|
105
|
-
"primitives/modes/size/small": "source",
|
|
106
|
-
"primitives/modes/size/global": "enabled",
|
|
107
|
-
"primitives/modes/typography/size/small": "enabled"
|
|
108
|
-
},
|
|
109
|
-
"$figmaCollectionId": "VariableCollectionId:36248:20757",
|
|
110
|
-
"$figmaModeId": "41630:3",
|
|
111
|
-
"$figmaVariableReferences": {
|
|
112
|
-
"font-size.1": "b16053371d400f6e865a57698519b78d6adb8aa6",
|
|
113
|
-
"font-size.2": "547170dd150be6b3a74de1bc2ee421ba40b9ed9a",
|
|
114
|
-
"font-size.3": "c7a841c5694c94f85089aa425f0de4010e5fe71d",
|
|
115
|
-
"font-size.4": "9499f40cb3873ccfa136f943dbf479e1ed0980eb",
|
|
116
|
-
"font-size.5": "428e13183c9e1c21a4ec5e651e4baba947a38bd9",
|
|
117
|
-
"font-size.6": "01dce7fd83742c2986baeda3c2202f9345acf5fa",
|
|
118
|
-
"font-size.7": "54633f9ab840c502b0984cb20888276c2f021360",
|
|
119
|
-
"font-size.8": "a298f78a4f1ed7171546a06ce6f74196867f462a",
|
|
120
|
-
"font-size.9": "7f1382abad418b3941b79731e871b641abebbcf7",
|
|
121
|
-
"font-size.10": "38a0bcc2952ba92e893293eaa1ca024bdc23d0d0",
|
|
122
|
-
"font-size.11": "347bbb6ecf0d21b6046a55b265e141749f069451",
|
|
123
|
-
"_size.0": "db5d3cb74ced9b5df367971881fc60662901cb5f",
|
|
124
|
-
"_size.1": "8574ccc778f88127b0e503b9f4270cee8ac07bea",
|
|
125
|
-
"_size.2": "e826c1174bf75cc8eaabddd3ee6dd3dd59e2c3cd",
|
|
126
|
-
"_size.3": "52325b1528e74c93d244c24ce33be7c61d97dce6",
|
|
127
|
-
"_size.4": "fc1ae6a081615cb898808f3f36f841593fae2c9b",
|
|
128
|
-
"_size.5": "ce889c0e000c40e6c9ac2882080f3d84e192b1a2",
|
|
129
|
-
"_size.6": "1d1d1c8f8a2bcc129ed4d3c29c220f41e60acb89",
|
|
130
|
-
"_size.7": "50853ccf4c596607803917729bf0510a5be18441",
|
|
131
|
-
"_size.8": "37be5287889e2fc796789f75e618445848aa64bb",
|
|
132
|
-
"_size.9": "5659f148afc31de2f124942280707e1518ce2b26",
|
|
133
|
-
"_size.10": "1bc7ae4831fa8f20f42bd65dda58c49912dd37ad",
|
|
134
|
-
"_size.11": "a587d8b489c006e3b2f9871225f0b93928c7111a",
|
|
135
|
-
"_size.12": "d31ff8a8ca5f0ce0cccf54b629a8bb7bd758ecf6",
|
|
136
|
-
"_size.13": "31c7166bdfbec5523a36a4490203e6464bb2f922",
|
|
137
|
-
"_size.14": "29e764bade4a858e4d59b8b1e13f3468561201ad",
|
|
138
|
-
"_size.15": "d08f3fbf817d252d557253c1a671007dc8471441",
|
|
139
|
-
"_size.18": "1a3958612165e85fefdb7fbaf5863e517342cd1f",
|
|
140
|
-
"_size.22": "4d164b5622c590ed2286a5a0372bb0ff516ef707",
|
|
141
|
-
"_size.26": "7fddc0a8ed0f1108e3a53b7c619ec12b0f9bf12f",
|
|
142
|
-
"_size.30": "ccdc8d1bcb7811581897286176b40dd68a5c615e",
|
|
143
|
-
"_size.mode-font-size": "a4d2c4228ebd72eb5a52b0856d06fc7c911140f8",
|
|
144
|
-
"_size.base": "87d2d80ae00975b4312c3577f8e820f65c3701af",
|
|
145
|
-
"_size.step": "d46cee0c021f49ef0d58c6f9ba8757f87de9ab6d"
|
|
146
|
-
},
|
|
147
|
-
"group": "Size"
|
|
148
|
-
},
|
|
149
|
-
{
|
|
150
|
-
"id": "0daa3ca0b427b9349da7e7dc00101b5668972926",
|
|
151
|
-
"name": "Light",
|
|
152
|
-
"$figmaStyleReferences": {},
|
|
153
|
-
"selectedTokenSets": {
|
|
154
|
-
"primitives/modes/color-scheme/light/global": "enabled",
|
|
155
|
-
"primitives/modes/color-scheme/light/digdir": "enabled",
|
|
156
|
-
"primitives/modes/color-scheme/light/altinn": "enabled",
|
|
157
|
-
"primitives/modes/color-scheme/light/uutilsynet": "enabled",
|
|
158
|
-
"primitives/modes/color-scheme/light/portal": "enabled"
|
|
159
|
-
},
|
|
160
|
-
"$figmaCollectionId": "VariableCollectionId:34811:5472",
|
|
161
|
-
"$figmaModeId": "34811:0",
|
|
162
|
-
"$figmaVariableReferences": {
|
|
163
|
-
"global.blue.1": "d2e976cd95db5f973022cda9eae917880c578bf5",
|
|
164
|
-
"global.blue.2": "6efca915ae1423d0e87d7c079e83b73e686fcb7c",
|
|
165
|
-
"global.blue.3": "f7c9f82022921b32806b05b1673ec1eff1922caf",
|
|
166
|
-
"global.blue.4": "b66d168b8341bad3580057ab160b2a68f78a6751",
|
|
167
|
-
"global.blue.5": "c4d707a44f6a05f0afc2cf38227a2b7dd831b2c2",
|
|
168
|
-
"global.blue.6": "bf90321d66b5f23a9674abe61d201b5b22e1c5e3",
|
|
169
|
-
"global.blue.7": "73ca300a3e953c8a21a20d98c1b8260dda4158cc",
|
|
170
|
-
"global.blue.8": "1ab6d1daae5bf5884441caf6ea35fa1f07a286ba",
|
|
171
|
-
"global.blue.9": "211e589c88fb34338c947c5c2f896b091b74465b",
|
|
172
|
-
"global.blue.10": "121ccd2a2015367a673b75c3873529157e82dc20",
|
|
173
|
-
"global.blue.11": "3ab48b84a41294a61d8bf26ee94464d0eafe6d9d",
|
|
174
|
-
"global.blue.12": "609a567c46e4692f43a557c3e67d58cc2bbd58ec",
|
|
175
|
-
"global.blue.13": "6269bf6afb50eae3e7c0215587e958819d70ed31",
|
|
176
|
-
"global.blue.14": "28261fd10eb199724fdb337b953d1d600e785db4",
|
|
177
|
-
"global.blue.15": "048c60fefccd796aceb1be19f7c7c4e7b90314a5",
|
|
178
|
-
"global.blue.16": "124c90f211a5c6538b1c3ed4aa24a4b559e2c338",
|
|
179
|
-
"global.green.1": "21baaf539ad57f62ec027af9e731fc5cff300187",
|
|
180
|
-
"global.green.2": "4696a51cea562bf7f84dcc9f264d0f9eaa877dd3",
|
|
181
|
-
"global.green.3": "f8549c79365a6b40e30f42cf16b18ed05d311c67",
|
|
182
|
-
"global.green.4": "3fd785b8c63d92ac246edc7a6d0e9adaabd517d1",
|
|
183
|
-
"global.green.5": "69255626d13508556bf2186137083da28d0bccb9",
|
|
184
|
-
"global.green.6": "6246b6916964dac245ac858e0f6f4d06caedd736",
|
|
185
|
-
"global.green.7": "05cce6768a8004925423dc0c08a0268bb43b2285",
|
|
186
|
-
"global.green.8": "07c6852ef7e4ae2a0d19e7757fa2af95e9800d83",
|
|
187
|
-
"global.green.9": "e175abcfa9dfc96399034f818e025a67089aa503",
|
|
188
|
-
"global.green.10": "303fecabc57e1f2ce8f3745117e23c097e2d9f84",
|
|
189
|
-
"global.green.11": "8ec4ef83c3dcdc6507ac4b8b0eec5fa71171a78d",
|
|
190
|
-
"global.green.12": "88d9df8106e7f966821dc83eed240729e67799f7",
|
|
191
|
-
"global.green.13": "bb4fde53803d4d5bd25a41163735a0d4f5084453",
|
|
192
|
-
"global.green.14": "525a6736824087a86560045184d530a69d788217",
|
|
193
|
-
"global.green.15": "977e787643bfd3599543dc801a16a98e60460f00",
|
|
194
|
-
"global.green.16": "653fffab2eedce78f45fded4018dabbcf5a6e27d",
|
|
195
|
-
"global.orange.1": "d2736659ea237d39db008a9867ebc1f979258ab0",
|
|
196
|
-
"global.orange.2": "bf837a33dad5cb56377433f7d211c216521f99ac",
|
|
197
|
-
"global.orange.3": "daacca314f9f7e0d8d611bda915ed34e951c5cc3",
|
|
198
|
-
"global.orange.4": "028fcd766bb47a840e3680743a4b1b968f8ba589",
|
|
199
|
-
"global.orange.5": "c047e222f1608bd986cd82764912dc6ff6fe9cbb",
|
|
200
|
-
"global.orange.6": "6f145b85a03a2e79e9e0a35d07f6ab1c241b5858",
|
|
201
|
-
"global.orange.7": "7093451903265583f5855c0e1962374beebacd65",
|
|
202
|
-
"global.orange.8": "e899cbc99b9f38064e4a312a5814a9dc124e07c3",
|
|
203
|
-
"global.orange.9": "4c7427cad93dc658f7c6f27b58dc943e5acedab8",
|
|
204
|
-
"global.orange.10": "911b6af07576df622589a1db30b8a0fe0fa04fa5",
|
|
205
|
-
"global.orange.11": "1bbad517144ebcced79c86defdb6a540b0af5275",
|
|
206
|
-
"global.orange.12": "7765ab682e6d3152a607f24a778094e249e553ad",
|
|
207
|
-
"global.orange.13": "658d19fb443ba020301d03b0727e03e90a664fe6",
|
|
208
|
-
"global.orange.14": "098481408fd23bbc97c6996d8b688add1883674f",
|
|
209
|
-
"global.orange.15": "f31e6c57d8ceeb39f8080ff5df5b451f9422f2f6",
|
|
210
|
-
"global.orange.16": "4e62f3169595a36902ff21deb86ad42c32f45e63",
|
|
211
|
-
"global.purple.1": "dd8f892e5a1fc74e47d3d5895de1447bbb5026c0",
|
|
212
|
-
"global.purple.2": "fa7784771907554b0557e70775ed6c03622af95c",
|
|
213
|
-
"global.purple.3": "f3bc265da4067eecb5318367b9ed193f9e52e230",
|
|
214
|
-
"global.purple.4": "1b0e7b776a60b19f8184ed6c3cc1926a017bda54",
|
|
215
|
-
"global.purple.5": "820e27336928810b405aa0d4dd94bfd024e67682",
|
|
216
|
-
"global.purple.6": "07049c4831c9c3842e7e3bb0277cd133dd64ae7a",
|
|
217
|
-
"global.purple.7": "6efaacc6201883ce8bdd3b9e94a66206f99b4d1e",
|
|
218
|
-
"global.purple.8": "9d9fb5c6a3193f5540e7bbe41513615a39491c46",
|
|
219
|
-
"global.purple.9": "be1ce5d3aa562dc2a476e6b6fc6f4c059b0f5faf",
|
|
220
|
-
"global.purple.10": "6753c42d3fb1ddb7d9aac5f015e6ccda24091e76",
|
|
221
|
-
"global.purple.11": "a528da4e5225d47a6d26e50a2009bbdcf9ef876e",
|
|
222
|
-
"global.purple.12": "782a06967ff4c93ed7468d3ccebf73d62a43efe2",
|
|
223
|
-
"global.purple.13": "4a1221c6a31c0476875e6bd80bf75cbde6d51a35",
|
|
224
|
-
"global.purple.14": "c80e5ffdf74196debfd5b37c48659152b525c2b9",
|
|
225
|
-
"global.purple.15": "6fce2fb6cdb93a3b6b61edb95f7d10eff40882e2",
|
|
226
|
-
"global.purple.16": "811e5c3fc69bb90d346847f30094d29ccd0b3db6",
|
|
227
|
-
"global.red.1": "96c68e54995f519fdf85445dcba73c823a579442",
|
|
228
|
-
"global.red.2": "a492455376e3ffa0445a86f8bed5d878082d0ded",
|
|
229
|
-
"global.red.3": "f09888e754814c7eb3da40b8cbcc43465d100402",
|
|
230
|
-
"global.red.4": "8c92ed293cab5e3ada6ff417c1aeba6830891b0f",
|
|
231
|
-
"global.red.5": "5e9dd03b4adeb98b153ebd8930288930e9dc4a9f",
|
|
232
|
-
"global.red.6": "7db609be5449de86faeecc7a1869d9e350a03db1",
|
|
233
|
-
"global.red.7": "2a99034da70ba21a84f2aca985f5dacad795e811",
|
|
234
|
-
"global.red.8": "d5eea18bfb7f83a051ada8289d0ceeb7be06b941",
|
|
235
|
-
"global.red.9": "886a217145edb0171192fa640aaca7109b5b36ce",
|
|
236
|
-
"global.red.10": "07f68ea7dfee0791d705c01049a19f9fa3c6b108",
|
|
237
|
-
"global.red.11": "2079aa95e35987b5d92f4c196914593ff5caa431",
|
|
238
|
-
"global.red.12": "f3a1e09ca133a5d52f211bbb3db4511855983a0f",
|
|
239
|
-
"global.red.13": "05dc77b8bcdd7ab509dbfa86aa37c437e23a8de8",
|
|
240
|
-
"global.red.14": "2e7fcaf2137929e1e4ddf85d6cfb289ed6a2fb86",
|
|
241
|
-
"global.red.15": "05438cf0d5eb4ff71816be72fd0546bc95102d08",
|
|
242
|
-
"global.red.16": "0f9d07cabfb0949b64117ae400b952d1959ec3cf",
|
|
243
|
-
"digdir.accent.1": "22e0c64990a2691d82a851a1d6169b02333a25d7",
|
|
244
|
-
"digdir.accent.2": "8aedfcf8007cd20076adf42b2bdf0299c3213fbb",
|
|
245
|
-
"digdir.accent.3": "3bace6056fbbf7b1af0bb06dd52b5d1a82024dc8",
|
|
246
|
-
"digdir.accent.4": "daeb2bb5b48270ae828b8bad05b590e9418466ec",
|
|
247
|
-
"digdir.accent.5": "c74cecfae184860f01fe9f18554a34f96f5a93fa",
|
|
248
|
-
"digdir.accent.6": "82c1ae45480d540f05f4290627c4afd675eafcc9",
|
|
249
|
-
"digdir.accent.7": "6c55b573f6d406bc996ecb7854b3ac5a693b0fc5",
|
|
250
|
-
"digdir.accent.8": "9206061886b103f1a9c38f7a0b77503d99aedccc",
|
|
251
|
-
"digdir.accent.9": "5729431c1d07182997c275bf18fbc1b08e1b832e",
|
|
252
|
-
"digdir.accent.10": "49e43207db501ef71a7429d20117019151d53a27",
|
|
253
|
-
"digdir.accent.11": "6d76a5f9fa3be394a4b384bda8cae2df526e67af",
|
|
254
|
-
"digdir.accent.12": "738d072011c73cacbf699f7a841da4d73ca9d22e",
|
|
255
|
-
"digdir.accent.13": "ca6fb4d945a86c9b550275809325a3067042208d",
|
|
256
|
-
"digdir.accent.14": "3dffeaacf6f10f403947a5f992fb475fd2300130",
|
|
257
|
-
"digdir.accent.15": "ed2abffaaa8b9852ff6ad88b99529858bef21789",
|
|
258
|
-
"digdir.accent.16": "68e564e06d3c0fd193c57f66621545a506c456ad",
|
|
259
|
-
"digdir.brand1.1": "62ab97347bc01e305371e196d874db8bfbf08490",
|
|
260
|
-
"digdir.brand1.2": "50c7943165bb60dfa23c172820a8d2c5c05136da",
|
|
261
|
-
"digdir.brand1.3": "bba7d8f231b3031cccc26179713b6132ef0c5008",
|
|
262
|
-
"digdir.brand1.4": "c164361b6110c25fc86527744da3664de152ae3e",
|
|
263
|
-
"digdir.brand1.5": "fe39d697e08a321ac17347a908cd98c2cbf03b6e",
|
|
264
|
-
"digdir.brand1.6": "382bfef650cea740aced2da0f9798cb2d5107315",
|
|
265
|
-
"digdir.brand1.7": "9a2625ef0fc81d2e7ba78106f2538a0836272e9d",
|
|
266
|
-
"digdir.brand1.8": "ecdae091da15b65e47c5a94980ab3a6630889049",
|
|
267
|
-
"digdir.brand1.9": "00072d72b303d04cef967b9b654117ba0a52ba8e",
|
|
268
|
-
"digdir.brand1.10": "cfce913f341161c8fe79db0a71ae77c0b0d11a67",
|
|
269
|
-
"digdir.brand1.11": "de05709b0a0cba9ca9db0d49f7cb1ee1bf2a6560",
|
|
270
|
-
"digdir.brand1.12": "c0a62d3e6fe56d899ef8265aa27497a908a5c2f6",
|
|
271
|
-
"digdir.brand1.13": "8c06c97cb71c7f2d9f25a0b176779ed7cac1485e",
|
|
272
|
-
"digdir.brand1.14": "afad2418a4fb75870f9b40e0c275774e0d97667a",
|
|
273
|
-
"digdir.brand1.15": "91764a842e127c8edd55e5a133ebbfb2c0f528d6",
|
|
274
|
-
"digdir.brand1.16": "2ebfc68200540cca8ba8ab4f9a5804aecb5cb836",
|
|
275
|
-
"digdir.brand2.1": "6b60e757945924d4c71b41a19c5f95d56fe49ce3",
|
|
276
|
-
"digdir.brand2.2": "65b1446306ff6f2f05d2830104467a77013e0aba",
|
|
277
|
-
"digdir.brand2.3": "2e8ca45785b0c6552bc7944105a9142238178310",
|
|
278
|
-
"digdir.brand2.4": "64155405e3edde4d969055261217e8a9da064003",
|
|
279
|
-
"digdir.brand2.5": "216ba3f4dfb4bdda89a60a9aedf34213c357ff4e",
|
|
280
|
-
"digdir.brand2.6": "ddde611d909b07474c0d2211d3b69625808a3eaa",
|
|
281
|
-
"digdir.brand2.7": "61d8c0e41b7aba73a6f07c73bf021be6a1e7c1ac",
|
|
282
|
-
"digdir.brand2.8": "81be0265550597bdfee1d914f4eb1df503f30d66",
|
|
283
|
-
"digdir.brand2.9": "9c5c98ada13b3b82537f11b837cadbcce16c3ce9",
|
|
284
|
-
"digdir.brand2.10": "7d204df8453c6c50467e84dd8bb03d8c38a78579",
|
|
285
|
-
"digdir.brand2.11": "08a3a7f6e352fd9b7ed82417d7d7394582d9e802",
|
|
286
|
-
"digdir.brand2.12": "61240c82c0803416c34e0811d6b50102924a2152",
|
|
287
|
-
"digdir.brand2.13": "5abd72e7a7c487e768e425764f26c30921dd83c9",
|
|
288
|
-
"digdir.brand2.14": "999a9ef67e1374b612c9ebcd15fdeecf479e28cd",
|
|
289
|
-
"digdir.brand2.15": "bb80faef075df7c7f105694f3b905f31af8ce257",
|
|
290
|
-
"digdir.brand2.16": "69ce6d2eb004c1e7aa5ec8449f265a6928884749",
|
|
291
|
-
"digdir.brand3.1": "6d3c433ca589e9ad89767a65f559b5b18ea6d58b",
|
|
292
|
-
"digdir.brand3.2": "af6e1390a533993194ed8f9970e67d194a809c62",
|
|
293
|
-
"digdir.brand3.3": "8bc173bf5ce984b461648916a5786cc24007c671",
|
|
294
|
-
"digdir.brand3.4": "58fe7985fe0ac60127ca0e3014094dde78e8d93d",
|
|
295
|
-
"digdir.brand3.5": "2e654552aeaf1c9cc66737c7bd94a14c44c1b4a6",
|
|
296
|
-
"digdir.brand3.6": "d583bb9f9ac5665a0c05eeaec53ec911abd0bbca",
|
|
297
|
-
"digdir.brand3.7": "cdfc5f98f50dc26eb95b6c3c57c27af26ca7739c",
|
|
298
|
-
"digdir.brand3.8": "3c87a085c531fc98dfc4f8994883862eb1a1663e",
|
|
299
|
-
"digdir.brand3.9": "af8ca18ac875b9a2617cdcf65df01858ef668571",
|
|
300
|
-
"digdir.brand3.10": "37cffedee0280941549e59d61fc8d303fe95de45",
|
|
301
|
-
"digdir.brand3.11": "d70fe1ae3774a5266fc60000e294677ebe5c5c78",
|
|
302
|
-
"digdir.brand3.12": "0efd06afd4db1d828e5fb32a323b28d95b15ebe3",
|
|
303
|
-
"digdir.brand3.13": "dbb1abf9770f3ce48b1460236b5a5b8a7b74c84d",
|
|
304
|
-
"digdir.brand3.14": "1f06d2cff7a0bc2d6bc49ee9ea065a66ba42e9de",
|
|
305
|
-
"digdir.brand3.15": "b291589877d2c7bc8f696c47cca0a0f36562bf6e",
|
|
306
|
-
"digdir.brand3.16": "48af5abe1308dacd036ea7ec5c22d54b9f697edf",
|
|
307
|
-
"digdir.neutral.1": "f69a07aa1532249a5c7097f540edfc1d2906c4ec",
|
|
308
|
-
"digdir.neutral.2": "ed5913c9e016f7bd09d37f92754c221203a3e509",
|
|
309
|
-
"digdir.neutral.3": "238902ca3c7e428c57fa1e58f13a9e89d4b73c3e",
|
|
310
|
-
"digdir.neutral.4": "d582aa80520890a29fef68b9f4bfe75415808750",
|
|
311
|
-
"digdir.neutral.5": "3242e4a2333b4f775faafbc1118d7853e264fe74",
|
|
312
|
-
"digdir.neutral.6": "823a43aff7507f73280397e5f76df1f300daa306",
|
|
313
|
-
"digdir.neutral.7": "b866b972cd3041e2e242b6e51ccf91c026a6eb09",
|
|
314
|
-
"digdir.neutral.8": "11967aa7ce4ff51274ca632ca0ea7b7e8dcdbe5e",
|
|
315
|
-
"digdir.neutral.9": "b19efc5bda07005f192c8199b12e422f61ea50d5",
|
|
316
|
-
"digdir.neutral.10": "0dc0a4591c645c663aad5b7a08b701dc7acfd2b7",
|
|
317
|
-
"digdir.neutral.11": "8c109dce49c700ab3252ae45b74546491060f111",
|
|
318
|
-
"digdir.neutral.12": "ca6b27c312c0f0f052b655ad76b53a81b6bd1a7a",
|
|
319
|
-
"digdir.neutral.13": "8517d3e19185ac4c48c953336ae4cc8d550a5d1f",
|
|
320
|
-
"digdir.neutral.14": "03782292cbd34c110c0a115a8bd808b3ab635b5d",
|
|
321
|
-
"digdir.neutral.15": "9c05e859dae47eb697a8357526b182ef61d94c76",
|
|
322
|
-
"digdir.neutral.16": "48b7fc5a4e25c33d87627bb84e1a393a9db673b1",
|
|
323
|
-
"altinn.accent.1": "0fb0b77a41528ad94572eb3b409dc9a84a06034c",
|
|
324
|
-
"altinn.accent.2": "e7ad00556548cadde8f43af2e1350b383bee9afc",
|
|
325
|
-
"altinn.accent.3": "004bf2b41a4b5675765858a4e6581fb27085ea8d",
|
|
326
|
-
"altinn.accent.4": "4e650a7db1990371ac81113d5d925da2d19b4803",
|
|
327
|
-
"altinn.accent.5": "ff423b04cad473a7f471d480b457d8e629169c08",
|
|
328
|
-
"altinn.accent.6": "3d921beb722fb2fa2b700c5527ca3601847fa0d0",
|
|
329
|
-
"altinn.accent.7": "5bfb9bbae717415bc7d04b92ca67c1202fe89a97",
|
|
330
|
-
"altinn.accent.8": "87e1efaa3766ef374ff07c4822d17d31ac1f0dcd",
|
|
331
|
-
"altinn.accent.9": "24f319a4eb21943c7b496e9524972ef816d37851",
|
|
332
|
-
"altinn.accent.10": "295b5958443c7ae169b20852dc0c2bf28b3082fc",
|
|
333
|
-
"altinn.accent.11": "02e00ac8e2c15ab837d7e3eb7f7d4ec35c734c5f",
|
|
334
|
-
"altinn.accent.12": "e8eaa15fdecd4f8763c8d613673a68455bf4ba79",
|
|
335
|
-
"altinn.accent.13": "2da73a55c208024893f51903b8e4d1086e51b402",
|
|
336
|
-
"altinn.accent.14": "db4b0fbaa260146fe3f0b8518905e11105285630",
|
|
337
|
-
"altinn.accent.15": "69d8f5efc0464b9dc46d4559f6c4c63f3b178524",
|
|
338
|
-
"altinn.accent.16": "c653c3b1cae365d61758dbf7a20be55e7f7e3929",
|
|
339
|
-
"altinn.brand1.1": "36919d02364b7601f02e4944d454a06047caac38",
|
|
340
|
-
"altinn.brand1.2": "074f294271716ae4048662eff67e5c349624b91d",
|
|
341
|
-
"altinn.brand1.3": "953054a71143dfb2b0a1908ca33e9440a9424931",
|
|
342
|
-
"altinn.brand1.4": "5bd1ef0fe4bee2392fc6ea98f71857c0b4f5d7f4",
|
|
343
|
-
"altinn.brand1.5": "b6569bacb1b4fa586269c0b4bd232246869f55b4",
|
|
344
|
-
"altinn.brand1.6": "fd55e933a227e1f83495f6ea283ccb98210507f3",
|
|
345
|
-
"altinn.brand1.7": "675968cbc559c08c7a44b27720d2364b5b4c155a",
|
|
346
|
-
"altinn.brand1.8": "0c9d37aa84f6a3cf054a6e06eb8337b1babd7b7e",
|
|
347
|
-
"altinn.brand1.9": "3522eab9ebfc2ae5c91a580feaf70465e9748f89",
|
|
348
|
-
"altinn.brand1.10": "3e61a3494660d174df6bab736a87675ab62ff87e",
|
|
349
|
-
"altinn.brand1.11": "3d4c53b43568c37b4ea9c2635cf5958fc739bf64",
|
|
350
|
-
"altinn.brand1.12": "a706bba785733f72521a3c632e25df975f98a08c",
|
|
351
|
-
"altinn.brand1.13": "f9ed3353c4e61b94c8a74e2c2fd72397cedc408f",
|
|
352
|
-
"altinn.brand1.14": "4377a455be6da7abf2f3ce7107a6854c28f40d94",
|
|
353
|
-
"altinn.brand1.15": "093c525a697bcde5ba27edf9b468b2e9407b82e6",
|
|
354
|
-
"altinn.brand1.16": "e78c591644329c8e13ee835622fd953bd0d9b414",
|
|
355
|
-
"altinn.brand2.1": "513d52765402e5c084a20c23ed21a2d739109b35",
|
|
356
|
-
"altinn.brand2.2": "0ee7ac0a9763ab782ec40b93a043a3d10c999ff9",
|
|
357
|
-
"altinn.brand2.3": "1c943c957030b1afcd70e01530035db77f0ebc34",
|
|
358
|
-
"altinn.brand2.4": "73adbc11588a4d41a0358fd7a327678af7138191",
|
|
359
|
-
"altinn.brand2.5": "1d3384f44d226abebb3b43b9988a11dff93333de",
|
|
360
|
-
"altinn.brand2.6": "3e1fd231892a974c1d338217072c2e9abdc7e904",
|
|
361
|
-
"altinn.brand2.7": "b3d2b34807b4775678254f1bbb893e7bf7a40908",
|
|
362
|
-
"altinn.brand2.8": "987afc969a5de78dc72208980c939bedc1ad88b4",
|
|
363
|
-
"altinn.brand2.9": "e82328a15d454b8a03ac04813136a8239e99b85d",
|
|
364
|
-
"altinn.brand2.10": "6d006ead8798823fed87eacfd2dc51695b0825ad",
|
|
365
|
-
"altinn.brand2.11": "58a1ebcebbd1df26bc50e8d52d39ed3711c8c3a7",
|
|
366
|
-
"altinn.brand2.12": "5b729c155ebffd620d57c33e291660f11b1884fa",
|
|
367
|
-
"altinn.brand2.13": "14c388ee4151f1e1f7ac2952658dcb89cab56370",
|
|
368
|
-
"altinn.brand2.14": "72b8ef43cc877a6ac3cb70d9ac2be42b1572e167",
|
|
369
|
-
"altinn.brand2.15": "25e59715d734c2451c357e141d1443ea1b6ef8e1",
|
|
370
|
-
"altinn.brand2.16": "80c31c85c0cb53db0b10b27230b9294b11bdf781",
|
|
371
|
-
"altinn.brand3.1": "871caba07e4fcb0fe56cfb939379ada95b487a05",
|
|
372
|
-
"altinn.brand3.2": "61f7371f2e403d7254b021c7711fcdf2e0dd131b",
|
|
373
|
-
"altinn.brand3.3": "c96a53b053fbd2ce612be43442568044e25287da",
|
|
374
|
-
"altinn.brand3.4": "1375f6d1141d514228812dd9c7b2bcf6fd68ec75",
|
|
375
|
-
"altinn.brand3.5": "245734869366fea1a8a0f6e921e2427ad42b196e",
|
|
376
|
-
"altinn.brand3.6": "95e8129218f51648fb283da8643f36e8013f38eb",
|
|
377
|
-
"altinn.brand3.7": "4d6259705c8938fa22307738cac8bad63d37a418",
|
|
378
|
-
"altinn.brand3.8": "a607b57ddeff2406b433212ec8f0d3e63e23b7eb",
|
|
379
|
-
"altinn.brand3.9": "f29d2dce85293e7bfc18561d47306c7b9af5e20c",
|
|
380
|
-
"altinn.brand3.10": "bc5f8d97862c89b6a0e196e49603918f742bec42",
|
|
381
|
-
"altinn.brand3.11": "92396787b7970ddbd54f3a90b2542baa0b0fb240",
|
|
382
|
-
"altinn.brand3.12": "31cc5bc290a45d598d2a76539cf8810ea1be23db",
|
|
383
|
-
"altinn.brand3.13": "934d8791f5ec56b0f9f7d66718d2d8ceeb800290",
|
|
384
|
-
"altinn.brand3.14": "2168184d996c3244e5e056faf9a1a46084c42879",
|
|
385
|
-
"altinn.brand3.15": "d0b9f91f14ff9aaa2db5372121cca90c226bda8f",
|
|
386
|
-
"altinn.brand3.16": "227ccf89ba5a96077b4d8b01a2fbd22d20e6f79e",
|
|
387
|
-
"altinn.neutral.1": "c255bb972d1a0cdef886b080b10920c295076162",
|
|
388
|
-
"altinn.neutral.2": "6aab85649aa5ee41e26a6a30e34eee1d9666a723",
|
|
389
|
-
"altinn.neutral.3": "261e25578ec0b953f52f3ad695aa640232af1e93",
|
|
390
|
-
"altinn.neutral.4": "bda06909ff48ed52390267ff56c8a5e24d94072c",
|
|
391
|
-
"altinn.neutral.5": "b640b85d1b7589224b31f13c1298f2eb7e34109c",
|
|
392
|
-
"altinn.neutral.6": "4bedeb4aeaf217ca0f234e721f5c3018d18679cd",
|
|
393
|
-
"altinn.neutral.7": "b8ae8fe38bd25646fe4ab6b135a3d0b4ebfe1a09",
|
|
394
|
-
"altinn.neutral.8": "20ff7324c6590e88410a8df11d2e4eac219e6b40",
|
|
395
|
-
"altinn.neutral.9": "ca35f86b8d225bc8d282c38f0118914183e496b7",
|
|
396
|
-
"altinn.neutral.10": "170c5343f26d7130010e6e6ea8896640b746324a",
|
|
397
|
-
"altinn.neutral.11": "d23fc8baa639efb8d1879893ffbcf4ccf21b09ea",
|
|
398
|
-
"altinn.neutral.12": "1e24159f68dc90a3839d68de4c25551bc90e7d2d",
|
|
399
|
-
"altinn.neutral.13": "55ae06a13c6dd5496df542e694dd91d50826206c",
|
|
400
|
-
"altinn.neutral.14": "4dab602f3d953a955c5fbd170ecd792f9e82aeb1",
|
|
401
|
-
"altinn.neutral.15": "5d2f1c09d43b315a8680e22c8201c52158ba2f60",
|
|
402
|
-
"altinn.neutral.16": "166c166b76231a8a8ed84212ecfaf1d5568955c2",
|
|
403
|
-
"uutilsynet.accent.1": "f3d2f6c290be99d776ee8983789da10d0018f91d",
|
|
404
|
-
"uutilsynet.accent.2": "97e61367a23cffa34c2c82119917a24b52f30644",
|
|
405
|
-
"uutilsynet.accent.3": "0a4ca6912aaa41d6948494781c5edbb565b3d775",
|
|
406
|
-
"uutilsynet.accent.4": "7486183d5951417b3feb6a85ebf7d211036a3374",
|
|
407
|
-
"uutilsynet.accent.5": "963bd062b52c96dcf0bd7b90702d2eefa1907814",
|
|
408
|
-
"uutilsynet.accent.6": "b645621d9600c9ba89c739797046b993b587dffe",
|
|
409
|
-
"uutilsynet.accent.7": "b898cdc8dfdb28cec2607cd831a14881fc148ac4",
|
|
410
|
-
"uutilsynet.accent.8": "aaa61e72469daeb4c00017bf7a148b956c6bf2c1",
|
|
411
|
-
"uutilsynet.accent.9": "5841059b0e7019c87139ad980d6a2a23598db0fc",
|
|
412
|
-
"uutilsynet.accent.10": "c061de53a650ecddc3a3f79209509c4c2a05b89e",
|
|
413
|
-
"uutilsynet.accent.11": "0709bd790b2d97fb62f637de1cb916e39c468315",
|
|
414
|
-
"uutilsynet.accent.12": "f9b61a29276d2e5967e739cb2a1f6d6ed52518fa",
|
|
415
|
-
"uutilsynet.accent.13": "39bc70eeea12684983d1b846de4286d41a7d0acd",
|
|
416
|
-
"uutilsynet.accent.14": "8d83052b3ffd4198d4ebe2ed7e03ce1597b35461",
|
|
417
|
-
"uutilsynet.accent.15": "c02f322a5dd8ca17d8a89074253a3452765f3ed4",
|
|
418
|
-
"uutilsynet.accent.16": "fcda90dfc75e2c8fa706dedeb759cf7c6da2ebe4",
|
|
419
|
-
"uutilsynet.brand1.1": "eef26815d95f5078aa95f61e9d124e5fe1f20483",
|
|
420
|
-
"uutilsynet.brand1.2": "19237aaaa44371a8e14ee6a83ec1f8c72aee0540",
|
|
421
|
-
"uutilsynet.brand1.3": "c84ed41674054143e54f24a878a3365e22adf50f",
|
|
422
|
-
"uutilsynet.brand1.4": "24da5a826852c3f7d1cdb8f791d733922eb91b4f",
|
|
423
|
-
"uutilsynet.brand1.5": "58948fa1db59c52b53b12959c8e8aa9636f81916",
|
|
424
|
-
"uutilsynet.brand1.6": "76fc1b8cfe4b0b71b55f3aef56dee3a383a65cac",
|
|
425
|
-
"uutilsynet.brand1.7": "ed7c0ff14b1ba0c0c20fd2c0c9d0594d69992a19",
|
|
426
|
-
"uutilsynet.brand1.8": "32d817a7fcee49832389e339489bbe00bcc6061f",
|
|
427
|
-
"uutilsynet.brand1.9": "14c815fd7907f0a8ab0aea86706d906f2b9f8ab3",
|
|
428
|
-
"uutilsynet.brand1.10": "2b62dacd76f9c852663b5d59d8d2a01610908a66",
|
|
429
|
-
"uutilsynet.brand1.11": "c3db8ec8b1194c9f8b1903156034155f6d9b1fe2",
|
|
430
|
-
"uutilsynet.brand1.12": "598b49515f61be7d78bf742adbe1e16438684ed3",
|
|
431
|
-
"uutilsynet.brand1.13": "6781cb8758421ffbd655493e3f1a9128a0b52913",
|
|
432
|
-
"uutilsynet.brand1.14": "a0a046c964098d4dc3633750188a3bf61239aa54",
|
|
433
|
-
"uutilsynet.brand1.15": "6bb484a56c82325be5ec0a8b35db5827e09386be",
|
|
434
|
-
"uutilsynet.brand1.16": "f891f87ec1dc9f9ae99055ce0699a418d7c485fa",
|
|
435
|
-
"uutilsynet.brand2.1": "1c50871cd57953360e1d832fdb85b23cdcf614cc",
|
|
436
|
-
"uutilsynet.brand2.2": "c5f3e888699cc7c3f98995f5a8bb8aa62090188b",
|
|
437
|
-
"uutilsynet.brand2.3": "6ce954ae850f3af975ea9808f9ce8b1cfa98b441",
|
|
438
|
-
"uutilsynet.brand2.4": "6440a7c16121c780f3ccadcc1210cb302cbd546f",
|
|
439
|
-
"uutilsynet.brand2.5": "34cd32ef946926cf0577101f4d5649a8e541c7cd",
|
|
440
|
-
"uutilsynet.brand2.6": "ea796ea2f374de870cd7aa32b7ff574fda65223b",
|
|
441
|
-
"uutilsynet.brand2.7": "f37e30188f1f846f29a43cd4c85b31f8ccddadc9",
|
|
442
|
-
"uutilsynet.brand2.8": "e6555814b75c2144a145e20031b56746c407b5aa",
|
|
443
|
-
"uutilsynet.brand2.9": "4706af8731c24a5905175ad35486af3856a1beed",
|
|
444
|
-
"uutilsynet.brand2.10": "0996ec5dff844ed8c440486492f34ec5b5465b0f",
|
|
445
|
-
"uutilsynet.brand2.11": "1f6927a2cda39ca749bf9bbc784c4c8ddd7be259",
|
|
446
|
-
"uutilsynet.brand2.12": "453efe1766971a392ca8fc667d43e9df96e4d379",
|
|
447
|
-
"uutilsynet.brand2.13": "88a7f3c85c9175395df40e694e3c34a26d51e984",
|
|
448
|
-
"uutilsynet.brand2.14": "7aa75b8d88eb0812dc3490a2b1f1b16841f19cf3",
|
|
449
|
-
"uutilsynet.brand2.15": "c3c3fb8fb0f5884987ed1b90e0ccc485b4947fc9",
|
|
450
|
-
"uutilsynet.brand2.16": "7aabb60e5bd7e3c03b3fe3bdbc5ecf4cf2129137",
|
|
451
|
-
"uutilsynet.brand3.1": "949a9a6f88513adeca3ae41586c6a069600e1b25",
|
|
452
|
-
"uutilsynet.brand3.2": "9f17e56de93b718b0a121a89576fd83866da980c",
|
|
453
|
-
"uutilsynet.brand3.3": "6ba89e04776f45a56c5de3be5fd3f225fda5d32d",
|
|
454
|
-
"uutilsynet.brand3.4": "fff74d8c8ceb0a230860d6dd70aaad401eeb399b",
|
|
455
|
-
"uutilsynet.brand3.5": "604dbdfff4b6403cf0c7a3c5483cfe2f3b03685e",
|
|
456
|
-
"uutilsynet.brand3.6": "e97347f1ed5db234e49522fe607731ee1f5c8b64",
|
|
457
|
-
"uutilsynet.brand3.7": "9ab63ff09d601fc778f506846e5b608995fd5d23",
|
|
458
|
-
"uutilsynet.brand3.8": "82db15e3ac0da607811a1b00b63b2ad9dd4d1dae",
|
|
459
|
-
"uutilsynet.brand3.9": "5428d2c89cce7f37155620dbf8ebc65b878910a5",
|
|
460
|
-
"uutilsynet.brand3.10": "3889ef29934ced7dcdaa8023b88233fc97cccb5b",
|
|
461
|
-
"uutilsynet.brand3.11": "1cd15452f30d9eb03c3742ee9e631449e733732f",
|
|
462
|
-
"uutilsynet.brand3.12": "a03b174e238e706a3420e2f03f1d066a22417135",
|
|
463
|
-
"uutilsynet.brand3.13": "feceda6d127f6316a2c6eb3ec46ffaf108027e3b",
|
|
464
|
-
"uutilsynet.brand3.14": "8f6fdb507c69e1612cd97fa6700d943a7695dff9",
|
|
465
|
-
"uutilsynet.brand3.15": "2338fed197c93864e9b3d5b51e1920ef1699453e",
|
|
466
|
-
"uutilsynet.brand3.16": "06700853e43eae96bd670c337c09dd1a28a287ca",
|
|
467
|
-
"uutilsynet.neutral.1": "ab65a178f0c62232a7758e3fad635fc5debd3118",
|
|
468
|
-
"uutilsynet.neutral.2": "6ab82659bc39b0fc1424b6d7869096e87697907f",
|
|
469
|
-
"uutilsynet.neutral.3": "ec3953e3a06afbf8a143c73adaba2c156f7c49f3",
|
|
470
|
-
"uutilsynet.neutral.4": "917135227c6447bb144b4f4250976d67e429eb8c",
|
|
471
|
-
"uutilsynet.neutral.5": "d040b388d7006cd10cf2bd352f73222bea2150fd",
|
|
472
|
-
"uutilsynet.neutral.6": "28556bca0c40e47185e5a665220b2cc0267ff1af",
|
|
473
|
-
"uutilsynet.neutral.7": "37bcd472351a182bda2a14e5f1d8f58ae6c75d4d",
|
|
474
|
-
"uutilsynet.neutral.8": "f28d1d5fc63b361541d4f95969b1bad3a3750baf",
|
|
475
|
-
"uutilsynet.neutral.9": "d11e2e6b03d74a63d78ea49328d688918d3dbf06",
|
|
476
|
-
"uutilsynet.neutral.10": "caa918f1ca848042678beff98977717cec60dfad",
|
|
477
|
-
"uutilsynet.neutral.11": "9f00a873b72c9a0fb95bae41c65977296e01acc5",
|
|
478
|
-
"uutilsynet.neutral.12": "78d0f33d33b5a4ace929f5011b4688f6a32f4f86",
|
|
479
|
-
"uutilsynet.neutral.13": "c32023ac4cd50b7890d2d384c434d522ab4a761a",
|
|
480
|
-
"uutilsynet.neutral.14": "8ed0fe42b1d055ca7f2038b2008905d45e259a84",
|
|
481
|
-
"uutilsynet.neutral.15": "d813a7245fce3b0eb315634a8a030c5d03c2b5ff",
|
|
482
|
-
"uutilsynet.neutral.16": "7727f6d6ac388d991094907ec59f1a4ef65ec468",
|
|
483
|
-
"portal.accent.1": "fe36f2c126fc4aca6925f4b273fe80520da6b48d",
|
|
484
|
-
"portal.accent.2": "76589c384669be607ea658306e7d81bfa4ee68c2",
|
|
485
|
-
"portal.accent.3": "c60ed610c9e1f7fe674922858abbb68fbb0eef9c",
|
|
486
|
-
"portal.accent.4": "76e0df55f7c81cb418179ee88afdbb661394ac48",
|
|
487
|
-
"portal.accent.5": "ac8e1b780e5f8d3674f67d283b87f9973ce4524d",
|
|
488
|
-
"portal.accent.6": "3f3ebd10725180a11b965808e4e7edca14500501",
|
|
489
|
-
"portal.accent.7": "1c723fb54aea1b3f0f005d07f51716510485a769",
|
|
490
|
-
"portal.accent.8": "5ea6a5c46157d1a654669797da38d31534540670",
|
|
491
|
-
"portal.accent.9": "3fc7fd8c2194673be61dcc7a2e14ec3ac7cb15d3",
|
|
492
|
-
"portal.accent.10": "99f77db40f2011ef9d5edc894cd90e981780441c",
|
|
493
|
-
"portal.accent.11": "19e76920b32e6070a07758568eca31d4ec3d1718",
|
|
494
|
-
"portal.accent.12": "4b9f01b9180159cec03ddb258b447f2f71e402f3",
|
|
495
|
-
"portal.accent.13": "6664f77312408077f09642ec8c8dfe1baa82ddb3",
|
|
496
|
-
"portal.accent.14": "b149e4cd661b9ff692b7c9345bd41031293ac7a4",
|
|
497
|
-
"portal.accent.15": "53da7213e03b3027b78332d2691e2c8091e53179",
|
|
498
|
-
"portal.accent.16": "45462f49dab0d604b66d9a290cfa35b19c08b497",
|
|
499
|
-
"portal.brand1.1": "13990e04d5e8f6c7e8e8227cc9429fc8be31c57e",
|
|
500
|
-
"portal.brand1.2": "8702231c993c2f0044f6000d49e9dad1d56c75aa",
|
|
501
|
-
"portal.brand1.3": "294c2a837d49443aed922b66eb09885087e3ca02",
|
|
502
|
-
"portal.brand1.4": "59405c43167d857865c699a61000a1bef0e7dc23",
|
|
503
|
-
"portal.brand1.5": "91ef198aa6b7ec816a8f4ee0c3691ff6b1990fb0",
|
|
504
|
-
"portal.brand1.6": "f7558d1fafcebc890d1db3336babe281a51d0a45",
|
|
505
|
-
"portal.brand1.7": "f2927d4281cc5edb143b70e2fd8d5bf5b249c5f5",
|
|
506
|
-
"portal.brand1.8": "d8d6e07b82831925fb412fe438af5fe1e97765be",
|
|
507
|
-
"portal.brand1.9": "8a20330208c1884becd8bd2f10eb65c04f4f06a3",
|
|
508
|
-
"portal.brand1.10": "17e03bc5be3177d0e9857f1323f31cde74433665",
|
|
509
|
-
"portal.brand1.11": "7f49d3e8b9899505e49bd87285e196f6dc9dc78f",
|
|
510
|
-
"portal.brand1.12": "49fd7eee74c89513053f4f104f095ac092e5e7de",
|
|
511
|
-
"portal.brand1.13": "3c894b17605b6a29ac97b40d636818c6e25ba0a8",
|
|
512
|
-
"portal.brand1.14": "95a6319ad18dd8399f121d565223d426002458bb",
|
|
513
|
-
"portal.brand1.15": "7e3205afe8df71b0cd48dbd9c22f921207bd571d",
|
|
514
|
-
"portal.brand1.16": "4721d3caed8dfadf62d53ed10a31f4c477fbd035",
|
|
515
|
-
"portal.brand2.1": "bf0648f9d3f3881748f4bec9a4c25bf2b500bcb7",
|
|
516
|
-
"portal.brand2.2": "b7c7dc119cf09253f02fbc54425b8b993db82b3e",
|
|
517
|
-
"portal.brand2.3": "b3fd18f771f41f13e9ea2a2e6608f74d153fbf84",
|
|
518
|
-
"portal.brand2.4": "0d7cf4cfe24abe1b469f31fbcbde74717cbd5f06",
|
|
519
|
-
"portal.brand2.5": "cbe1d22baa2f23e1788d11a92739d0fb26427a0f",
|
|
520
|
-
"portal.brand2.6": "daf7bbd9af460a9a71d10a7b8073d6a67104cd4a",
|
|
521
|
-
"portal.brand2.7": "970d1a3d99a43331fbd1f58dad543de35c51eac1",
|
|
522
|
-
"portal.brand2.8": "91fa0e9798eb99ea24a7b71fc849e8e766dd8785",
|
|
523
|
-
"portal.brand2.9": "b70e0084db30ebfed74ca059f6c4bf6b92819ff1",
|
|
524
|
-
"portal.brand2.10": "30e568ee86f3654ade285e9f8e477e189fa2b672",
|
|
525
|
-
"portal.brand2.11": "52574d96ff7cced331e9d8279e907186d82d7df5",
|
|
526
|
-
"portal.brand2.12": "39a2bd8ccbd38dc8069b3b07e71d3175e0bdea07",
|
|
527
|
-
"portal.brand2.13": "b2223c13ea9441c5421bda8777490637c644edeb",
|
|
528
|
-
"portal.brand2.14": "640739412e67197c99577296c6dba7715177e0d9",
|
|
529
|
-
"portal.brand2.15": "0a8096bb96f697c92616a534613a89a4ccff34c0",
|
|
530
|
-
"portal.brand2.16": "5c26cd8a1e0115f6be7e4df9aa899cd14370308a",
|
|
531
|
-
"portal.brand3.1": "8b17b038829930109a1ad12c89749ad6ac246147",
|
|
532
|
-
"portal.brand3.2": "3479925e9abeba538ea9a18d3f6da1a0ca72b5f6",
|
|
533
|
-
"portal.brand3.3": "30c3ea469e1eb46273e99c9550128d654af3174b",
|
|
534
|
-
"portal.brand3.4": "d106f07e1e131f36e4ad24a85f416afd9a20c0c2",
|
|
535
|
-
"portal.brand3.5": "7b17706a1d45fa0548f7b0ffdfa16da7f2b771db",
|
|
536
|
-
"portal.brand3.6": "1a8f718eea9ff9181251e06aa711cfaca8d0f03a",
|
|
537
|
-
"portal.brand3.7": "6aa9a6dc4982302216ee4b17730b1fa002a05189",
|
|
538
|
-
"portal.brand3.8": "92b2aba55b0ac298a4bc2691393c46e510b055e4",
|
|
539
|
-
"portal.brand3.9": "dcc4c5fccb713592739cc6a93e8c09fc9dd626ce",
|
|
540
|
-
"portal.brand3.10": "9c07fc0da8df2d239f45ec443bf43c7d78ebf608",
|
|
541
|
-
"portal.brand3.11": "171f229b471305defc943bc597fb75c502e7ea0a",
|
|
542
|
-
"portal.brand3.12": "58d54c676ffb7863ab46b91ef6f073781816e4c9",
|
|
543
|
-
"portal.brand3.13": "af4bc80a61d4b5d71023a6125bf60f03e87507ab",
|
|
544
|
-
"portal.brand3.14": "e08027c2a6379925fabf66604754674fe40f0b75",
|
|
545
|
-
"portal.brand3.15": "469eca49c985b3c5a5f0d323b94c3347f194fb66",
|
|
546
|
-
"portal.brand3.16": "5151f138bc44886fd0a2cb4d514fdf0f484d85e1",
|
|
547
|
-
"portal.neutral.1": "99e63ae87185c1bf94841abce17d60f49089019c",
|
|
548
|
-
"portal.neutral.2": "dd230ead57c4e461292918c41e6f9d8008bb445b",
|
|
549
|
-
"portal.neutral.3": "05d553c0f57e387d0c9ad2e749ab33f4ece01a3b",
|
|
550
|
-
"portal.neutral.4": "9fab3210fa1a59cef770e5dea2d0cc7cbd4881ea",
|
|
551
|
-
"portal.neutral.5": "abe10b5d96d4a20b3ac0f84b75d896c0c1dd7cb1",
|
|
552
|
-
"portal.neutral.6": "e19ccf18bde31769ab97a46f70b252b6efc4a19c",
|
|
553
|
-
"portal.neutral.7": "c40c91528a1ea6af1db2e2a401e8575d9476e45a",
|
|
554
|
-
"portal.neutral.8": "90d9466e4229b99294052989d36dc6a4cf359b2b",
|
|
555
|
-
"portal.neutral.9": "5ddc2b00dc5b6380cd524cabf0db71e9394f8e0e",
|
|
556
|
-
"portal.neutral.10": "a25dd9806cae767e0273700d2de340e7e49bff32",
|
|
557
|
-
"portal.neutral.11": "e0bb00e92041079bee0fd39bd302675ff159c9f7",
|
|
558
|
-
"portal.neutral.12": "ca97f7417ceb91ee311a9939cfd0b74e9b57eeee",
|
|
559
|
-
"portal.neutral.13": "aa9cd80388b52484bd5a7175bf2323adf146e330",
|
|
560
|
-
"portal.neutral.14": "843f2dcd2679e4beb168d83a91dc0b2ec375d11d",
|
|
561
|
-
"portal.neutral.15": "70670eb0b285375dbad02ecbd342a1e422df6335",
|
|
562
|
-
"portal.neutral.16": "8fd76cefbdee15282dadbfed662921c7e77db812"
|
|
563
|
-
},
|
|
564
|
-
"group": "Color scheme"
|
|
565
|
-
},
|
|
566
|
-
{
|
|
567
|
-
"id": "9ebd8aed52afbffc17e2666e8b4653a53498b257",
|
|
568
|
-
"name": "Dark",
|
|
569
|
-
"$figmaStyleReferences": {},
|
|
570
|
-
"selectedTokenSets": {
|
|
571
|
-
"primitives/modes/color-scheme/dark/global": "enabled",
|
|
572
|
-
"primitives/modes/color-scheme/dark/digdir": "enabled",
|
|
573
|
-
"primitives/modes/color-scheme/dark/altinn": "enabled",
|
|
574
|
-
"primitives/modes/color-scheme/dark/uutilsynet": "enabled",
|
|
575
|
-
"primitives/modes/color-scheme/dark/portal": "enabled"
|
|
576
|
-
},
|
|
577
|
-
"$figmaCollectionId": "VariableCollectionId:34811:5472",
|
|
578
|
-
"$figmaModeId": "34811:1",
|
|
579
|
-
"$figmaVariableReferences": {
|
|
580
|
-
"global.blue.1": "d2e976cd95db5f973022cda9eae917880c578bf5",
|
|
581
|
-
"global.blue.2": "6efca915ae1423d0e87d7c079e83b73e686fcb7c",
|
|
582
|
-
"global.blue.3": "f7c9f82022921b32806b05b1673ec1eff1922caf",
|
|
583
|
-
"global.blue.4": "b66d168b8341bad3580057ab160b2a68f78a6751",
|
|
584
|
-
"global.blue.5": "c4d707a44f6a05f0afc2cf38227a2b7dd831b2c2",
|
|
585
|
-
"global.blue.6": "bf90321d66b5f23a9674abe61d201b5b22e1c5e3",
|
|
586
|
-
"global.blue.7": "73ca300a3e953c8a21a20d98c1b8260dda4158cc",
|
|
587
|
-
"global.blue.8": "1ab6d1daae5bf5884441caf6ea35fa1f07a286ba",
|
|
588
|
-
"global.blue.9": "211e589c88fb34338c947c5c2f896b091b74465b",
|
|
589
|
-
"global.blue.10": "121ccd2a2015367a673b75c3873529157e82dc20",
|
|
590
|
-
"global.blue.11": "3ab48b84a41294a61d8bf26ee94464d0eafe6d9d",
|
|
591
|
-
"global.blue.12": "609a567c46e4692f43a557c3e67d58cc2bbd58ec",
|
|
592
|
-
"global.blue.13": "6269bf6afb50eae3e7c0215587e958819d70ed31",
|
|
593
|
-
"global.blue.14": "28261fd10eb199724fdb337b953d1d600e785db4",
|
|
594
|
-
"global.blue.15": "048c60fefccd796aceb1be19f7c7c4e7b90314a5",
|
|
595
|
-
"global.blue.16": "124c90f211a5c6538b1c3ed4aa24a4b559e2c338",
|
|
596
|
-
"global.green.1": "21baaf539ad57f62ec027af9e731fc5cff300187",
|
|
597
|
-
"global.green.2": "4696a51cea562bf7f84dcc9f264d0f9eaa877dd3",
|
|
598
|
-
"global.green.3": "f8549c79365a6b40e30f42cf16b18ed05d311c67",
|
|
599
|
-
"global.green.4": "3fd785b8c63d92ac246edc7a6d0e9adaabd517d1",
|
|
600
|
-
"global.green.5": "69255626d13508556bf2186137083da28d0bccb9",
|
|
601
|
-
"global.green.6": "6246b6916964dac245ac858e0f6f4d06caedd736",
|
|
602
|
-
"global.green.7": "05cce6768a8004925423dc0c08a0268bb43b2285",
|
|
603
|
-
"global.green.8": "07c6852ef7e4ae2a0d19e7757fa2af95e9800d83",
|
|
604
|
-
"global.green.9": "e175abcfa9dfc96399034f818e025a67089aa503",
|
|
605
|
-
"global.green.10": "303fecabc57e1f2ce8f3745117e23c097e2d9f84",
|
|
606
|
-
"global.green.11": "8ec4ef83c3dcdc6507ac4b8b0eec5fa71171a78d",
|
|
607
|
-
"global.green.12": "88d9df8106e7f966821dc83eed240729e67799f7",
|
|
608
|
-
"global.green.13": "bb4fde53803d4d5bd25a41163735a0d4f5084453",
|
|
609
|
-
"global.green.14": "525a6736824087a86560045184d530a69d788217",
|
|
610
|
-
"global.green.15": "977e787643bfd3599543dc801a16a98e60460f00",
|
|
611
|
-
"global.green.16": "653fffab2eedce78f45fded4018dabbcf5a6e27d",
|
|
612
|
-
"global.orange.1": "d2736659ea237d39db008a9867ebc1f979258ab0",
|
|
613
|
-
"global.orange.2": "bf837a33dad5cb56377433f7d211c216521f99ac",
|
|
614
|
-
"global.orange.3": "daacca314f9f7e0d8d611bda915ed34e951c5cc3",
|
|
615
|
-
"global.orange.4": "028fcd766bb47a840e3680743a4b1b968f8ba589",
|
|
616
|
-
"global.orange.5": "c047e222f1608bd986cd82764912dc6ff6fe9cbb",
|
|
617
|
-
"global.orange.6": "6f145b85a03a2e79e9e0a35d07f6ab1c241b5858",
|
|
618
|
-
"global.orange.7": "7093451903265583f5855c0e1962374beebacd65",
|
|
619
|
-
"global.orange.8": "e899cbc99b9f38064e4a312a5814a9dc124e07c3",
|
|
620
|
-
"global.orange.9": "4c7427cad93dc658f7c6f27b58dc943e5acedab8",
|
|
621
|
-
"global.orange.10": "911b6af07576df622589a1db30b8a0fe0fa04fa5",
|
|
622
|
-
"global.orange.11": "1bbad517144ebcced79c86defdb6a540b0af5275",
|
|
623
|
-
"global.orange.12": "7765ab682e6d3152a607f24a778094e249e553ad",
|
|
624
|
-
"global.orange.13": "658d19fb443ba020301d03b0727e03e90a664fe6",
|
|
625
|
-
"global.orange.14": "098481408fd23bbc97c6996d8b688add1883674f",
|
|
626
|
-
"global.orange.15": "f31e6c57d8ceeb39f8080ff5df5b451f9422f2f6",
|
|
627
|
-
"global.orange.16": "4e62f3169595a36902ff21deb86ad42c32f45e63",
|
|
628
|
-
"global.purple.1": "dd8f892e5a1fc74e47d3d5895de1447bbb5026c0",
|
|
629
|
-
"global.purple.2": "fa7784771907554b0557e70775ed6c03622af95c",
|
|
630
|
-
"global.purple.3": "f3bc265da4067eecb5318367b9ed193f9e52e230",
|
|
631
|
-
"global.purple.4": "1b0e7b776a60b19f8184ed6c3cc1926a017bda54",
|
|
632
|
-
"global.purple.5": "820e27336928810b405aa0d4dd94bfd024e67682",
|
|
633
|
-
"global.purple.6": "07049c4831c9c3842e7e3bb0277cd133dd64ae7a",
|
|
634
|
-
"global.purple.7": "6efaacc6201883ce8bdd3b9e94a66206f99b4d1e",
|
|
635
|
-
"global.purple.8": "9d9fb5c6a3193f5540e7bbe41513615a39491c46",
|
|
636
|
-
"global.purple.9": "be1ce5d3aa562dc2a476e6b6fc6f4c059b0f5faf",
|
|
637
|
-
"global.purple.10": "6753c42d3fb1ddb7d9aac5f015e6ccda24091e76",
|
|
638
|
-
"global.purple.11": "a528da4e5225d47a6d26e50a2009bbdcf9ef876e",
|
|
639
|
-
"global.purple.12": "782a06967ff4c93ed7468d3ccebf73d62a43efe2",
|
|
640
|
-
"global.purple.13": "4a1221c6a31c0476875e6bd80bf75cbde6d51a35",
|
|
641
|
-
"global.purple.14": "c80e5ffdf74196debfd5b37c48659152b525c2b9",
|
|
642
|
-
"global.purple.15": "6fce2fb6cdb93a3b6b61edb95f7d10eff40882e2",
|
|
643
|
-
"global.purple.16": "811e5c3fc69bb90d346847f30094d29ccd0b3db6",
|
|
644
|
-
"global.red.1": "96c68e54995f519fdf85445dcba73c823a579442",
|
|
645
|
-
"global.red.2": "a492455376e3ffa0445a86f8bed5d878082d0ded",
|
|
646
|
-
"global.red.3": "f09888e754814c7eb3da40b8cbcc43465d100402",
|
|
647
|
-
"global.red.4": "8c92ed293cab5e3ada6ff417c1aeba6830891b0f",
|
|
648
|
-
"global.red.5": "5e9dd03b4adeb98b153ebd8930288930e9dc4a9f",
|
|
649
|
-
"global.red.6": "7db609be5449de86faeecc7a1869d9e350a03db1",
|
|
650
|
-
"global.red.7": "2a99034da70ba21a84f2aca985f5dacad795e811",
|
|
651
|
-
"global.red.8": "d5eea18bfb7f83a051ada8289d0ceeb7be06b941",
|
|
652
|
-
"global.red.9": "886a217145edb0171192fa640aaca7109b5b36ce",
|
|
653
|
-
"global.red.10": "07f68ea7dfee0791d705c01049a19f9fa3c6b108",
|
|
654
|
-
"global.red.11": "2079aa95e35987b5d92f4c196914593ff5caa431",
|
|
655
|
-
"global.red.12": "f3a1e09ca133a5d52f211bbb3db4511855983a0f",
|
|
656
|
-
"global.red.13": "05dc77b8bcdd7ab509dbfa86aa37c437e23a8de8",
|
|
657
|
-
"global.red.14": "2e7fcaf2137929e1e4ddf85d6cfb289ed6a2fb86",
|
|
658
|
-
"global.red.15": "05438cf0d5eb4ff71816be72fd0546bc95102d08",
|
|
659
|
-
"global.red.16": "0f9d07cabfb0949b64117ae400b952d1959ec3cf",
|
|
660
|
-
"digdir.accent.1": "22e0c64990a2691d82a851a1d6169b02333a25d7",
|
|
661
|
-
"digdir.accent.2": "8aedfcf8007cd20076adf42b2bdf0299c3213fbb",
|
|
662
|
-
"digdir.accent.3": "3bace6056fbbf7b1af0bb06dd52b5d1a82024dc8",
|
|
663
|
-
"digdir.accent.4": "daeb2bb5b48270ae828b8bad05b590e9418466ec",
|
|
664
|
-
"digdir.accent.5": "c74cecfae184860f01fe9f18554a34f96f5a93fa",
|
|
665
|
-
"digdir.accent.6": "82c1ae45480d540f05f4290627c4afd675eafcc9",
|
|
666
|
-
"digdir.accent.7": "6c55b573f6d406bc996ecb7854b3ac5a693b0fc5",
|
|
667
|
-
"digdir.accent.8": "9206061886b103f1a9c38f7a0b77503d99aedccc",
|
|
668
|
-
"digdir.accent.9": "5729431c1d07182997c275bf18fbc1b08e1b832e",
|
|
669
|
-
"digdir.accent.10": "49e43207db501ef71a7429d20117019151d53a27",
|
|
670
|
-
"digdir.accent.11": "6d76a5f9fa3be394a4b384bda8cae2df526e67af",
|
|
671
|
-
"digdir.accent.12": "738d072011c73cacbf699f7a841da4d73ca9d22e",
|
|
672
|
-
"digdir.accent.13": "ca6fb4d945a86c9b550275809325a3067042208d",
|
|
673
|
-
"digdir.accent.14": "3dffeaacf6f10f403947a5f992fb475fd2300130",
|
|
674
|
-
"digdir.accent.15": "ed2abffaaa8b9852ff6ad88b99529858bef21789",
|
|
675
|
-
"digdir.accent.16": "68e564e06d3c0fd193c57f66621545a506c456ad",
|
|
676
|
-
"digdir.brand1.1": "62ab97347bc01e305371e196d874db8bfbf08490",
|
|
677
|
-
"digdir.brand1.2": "50c7943165bb60dfa23c172820a8d2c5c05136da",
|
|
678
|
-
"digdir.brand1.3": "bba7d8f231b3031cccc26179713b6132ef0c5008",
|
|
679
|
-
"digdir.brand1.4": "c164361b6110c25fc86527744da3664de152ae3e",
|
|
680
|
-
"digdir.brand1.5": "fe39d697e08a321ac17347a908cd98c2cbf03b6e",
|
|
681
|
-
"digdir.brand1.6": "382bfef650cea740aced2da0f9798cb2d5107315",
|
|
682
|
-
"digdir.brand1.7": "9a2625ef0fc81d2e7ba78106f2538a0836272e9d",
|
|
683
|
-
"digdir.brand1.8": "ecdae091da15b65e47c5a94980ab3a6630889049",
|
|
684
|
-
"digdir.brand1.9": "00072d72b303d04cef967b9b654117ba0a52ba8e",
|
|
685
|
-
"digdir.brand1.10": "cfce913f341161c8fe79db0a71ae77c0b0d11a67",
|
|
686
|
-
"digdir.brand1.11": "de05709b0a0cba9ca9db0d49f7cb1ee1bf2a6560",
|
|
687
|
-
"digdir.brand1.12": "c0a62d3e6fe56d899ef8265aa27497a908a5c2f6",
|
|
688
|
-
"digdir.brand1.13": "8c06c97cb71c7f2d9f25a0b176779ed7cac1485e",
|
|
689
|
-
"digdir.brand1.14": "afad2418a4fb75870f9b40e0c275774e0d97667a",
|
|
690
|
-
"digdir.brand1.15": "91764a842e127c8edd55e5a133ebbfb2c0f528d6",
|
|
691
|
-
"digdir.brand1.16": "2ebfc68200540cca8ba8ab4f9a5804aecb5cb836",
|
|
692
|
-
"digdir.brand2.1": "6b60e757945924d4c71b41a19c5f95d56fe49ce3",
|
|
693
|
-
"digdir.brand2.2": "65b1446306ff6f2f05d2830104467a77013e0aba",
|
|
694
|
-
"digdir.brand2.3": "2e8ca45785b0c6552bc7944105a9142238178310",
|
|
695
|
-
"digdir.brand2.4": "64155405e3edde4d969055261217e8a9da064003",
|
|
696
|
-
"digdir.brand2.5": "216ba3f4dfb4bdda89a60a9aedf34213c357ff4e",
|
|
697
|
-
"digdir.brand2.6": "ddde611d909b07474c0d2211d3b69625808a3eaa",
|
|
698
|
-
"digdir.brand2.7": "61d8c0e41b7aba73a6f07c73bf021be6a1e7c1ac",
|
|
699
|
-
"digdir.brand2.8": "81be0265550597bdfee1d914f4eb1df503f30d66",
|
|
700
|
-
"digdir.brand2.9": "9c5c98ada13b3b82537f11b837cadbcce16c3ce9",
|
|
701
|
-
"digdir.brand2.10": "7d204df8453c6c50467e84dd8bb03d8c38a78579",
|
|
702
|
-
"digdir.brand2.11": "08a3a7f6e352fd9b7ed82417d7d7394582d9e802",
|
|
703
|
-
"digdir.brand2.12": "61240c82c0803416c34e0811d6b50102924a2152",
|
|
704
|
-
"digdir.brand2.13": "5abd72e7a7c487e768e425764f26c30921dd83c9",
|
|
705
|
-
"digdir.brand2.14": "999a9ef67e1374b612c9ebcd15fdeecf479e28cd",
|
|
706
|
-
"digdir.brand2.15": "bb80faef075df7c7f105694f3b905f31af8ce257",
|
|
707
|
-
"digdir.brand2.16": "69ce6d2eb004c1e7aa5ec8449f265a6928884749",
|
|
708
|
-
"digdir.brand3.1": "6d3c433ca589e9ad89767a65f559b5b18ea6d58b",
|
|
709
|
-
"digdir.brand3.2": "af6e1390a533993194ed8f9970e67d194a809c62",
|
|
710
|
-
"digdir.brand3.3": "8bc173bf5ce984b461648916a5786cc24007c671",
|
|
711
|
-
"digdir.brand3.4": "58fe7985fe0ac60127ca0e3014094dde78e8d93d",
|
|
712
|
-
"digdir.brand3.5": "2e654552aeaf1c9cc66737c7bd94a14c44c1b4a6",
|
|
713
|
-
"digdir.brand3.6": "d583bb9f9ac5665a0c05eeaec53ec911abd0bbca",
|
|
714
|
-
"digdir.brand3.7": "cdfc5f98f50dc26eb95b6c3c57c27af26ca7739c",
|
|
715
|
-
"digdir.brand3.8": "3c87a085c531fc98dfc4f8994883862eb1a1663e",
|
|
716
|
-
"digdir.brand3.9": "af8ca18ac875b9a2617cdcf65df01858ef668571",
|
|
717
|
-
"digdir.brand3.10": "37cffedee0280941549e59d61fc8d303fe95de45",
|
|
718
|
-
"digdir.brand3.11": "d70fe1ae3774a5266fc60000e294677ebe5c5c78",
|
|
719
|
-
"digdir.brand3.12": "0efd06afd4db1d828e5fb32a323b28d95b15ebe3",
|
|
720
|
-
"digdir.brand3.13": "dbb1abf9770f3ce48b1460236b5a5b8a7b74c84d",
|
|
721
|
-
"digdir.brand3.14": "1f06d2cff7a0bc2d6bc49ee9ea065a66ba42e9de",
|
|
722
|
-
"digdir.brand3.15": "b291589877d2c7bc8f696c47cca0a0f36562bf6e",
|
|
723
|
-
"digdir.brand3.16": "48af5abe1308dacd036ea7ec5c22d54b9f697edf",
|
|
724
|
-
"digdir.neutral.1": "f69a07aa1532249a5c7097f540edfc1d2906c4ec",
|
|
725
|
-
"digdir.neutral.2": "ed5913c9e016f7bd09d37f92754c221203a3e509",
|
|
726
|
-
"digdir.neutral.3": "238902ca3c7e428c57fa1e58f13a9e89d4b73c3e",
|
|
727
|
-
"digdir.neutral.4": "d582aa80520890a29fef68b9f4bfe75415808750",
|
|
728
|
-
"digdir.neutral.5": "3242e4a2333b4f775faafbc1118d7853e264fe74",
|
|
729
|
-
"digdir.neutral.6": "823a43aff7507f73280397e5f76df1f300daa306",
|
|
730
|
-
"digdir.neutral.7": "b866b972cd3041e2e242b6e51ccf91c026a6eb09",
|
|
731
|
-
"digdir.neutral.8": "11967aa7ce4ff51274ca632ca0ea7b7e8dcdbe5e",
|
|
732
|
-
"digdir.neutral.9": "b19efc5bda07005f192c8199b12e422f61ea50d5",
|
|
733
|
-
"digdir.neutral.10": "0dc0a4591c645c663aad5b7a08b701dc7acfd2b7",
|
|
734
|
-
"digdir.neutral.11": "8c109dce49c700ab3252ae45b74546491060f111",
|
|
735
|
-
"digdir.neutral.12": "ca6b27c312c0f0f052b655ad76b53a81b6bd1a7a",
|
|
736
|
-
"digdir.neutral.13": "8517d3e19185ac4c48c953336ae4cc8d550a5d1f",
|
|
737
|
-
"digdir.neutral.14": "03782292cbd34c110c0a115a8bd808b3ab635b5d",
|
|
738
|
-
"digdir.neutral.15": "9c05e859dae47eb697a8357526b182ef61d94c76",
|
|
739
|
-
"digdir.neutral.16": "48b7fc5a4e25c33d87627bb84e1a393a9db673b1",
|
|
740
|
-
"altinn.accent.1": "0fb0b77a41528ad94572eb3b409dc9a84a06034c",
|
|
741
|
-
"altinn.accent.2": "e7ad00556548cadde8f43af2e1350b383bee9afc",
|
|
742
|
-
"altinn.accent.3": "004bf2b41a4b5675765858a4e6581fb27085ea8d",
|
|
743
|
-
"altinn.accent.4": "4e650a7db1990371ac81113d5d925da2d19b4803",
|
|
744
|
-
"altinn.accent.5": "ff423b04cad473a7f471d480b457d8e629169c08",
|
|
745
|
-
"altinn.accent.6": "3d921beb722fb2fa2b700c5527ca3601847fa0d0",
|
|
746
|
-
"altinn.accent.7": "5bfb9bbae717415bc7d04b92ca67c1202fe89a97",
|
|
747
|
-
"altinn.accent.8": "87e1efaa3766ef374ff07c4822d17d31ac1f0dcd",
|
|
748
|
-
"altinn.accent.9": "24f319a4eb21943c7b496e9524972ef816d37851",
|
|
749
|
-
"altinn.accent.10": "295b5958443c7ae169b20852dc0c2bf28b3082fc",
|
|
750
|
-
"altinn.accent.11": "02e00ac8e2c15ab837d7e3eb7f7d4ec35c734c5f",
|
|
751
|
-
"altinn.accent.12": "e8eaa15fdecd4f8763c8d613673a68455bf4ba79",
|
|
752
|
-
"altinn.accent.13": "2da73a55c208024893f51903b8e4d1086e51b402",
|
|
753
|
-
"altinn.accent.14": "db4b0fbaa260146fe3f0b8518905e11105285630",
|
|
754
|
-
"altinn.accent.15": "69d8f5efc0464b9dc46d4559f6c4c63f3b178524",
|
|
755
|
-
"altinn.accent.16": "c653c3b1cae365d61758dbf7a20be55e7f7e3929",
|
|
756
|
-
"altinn.brand1.1": "36919d02364b7601f02e4944d454a06047caac38",
|
|
757
|
-
"altinn.brand1.2": "074f294271716ae4048662eff67e5c349624b91d",
|
|
758
|
-
"altinn.brand1.3": "953054a71143dfb2b0a1908ca33e9440a9424931",
|
|
759
|
-
"altinn.brand1.4": "5bd1ef0fe4bee2392fc6ea98f71857c0b4f5d7f4",
|
|
760
|
-
"altinn.brand1.5": "b6569bacb1b4fa586269c0b4bd232246869f55b4",
|
|
761
|
-
"altinn.brand1.6": "fd55e933a227e1f83495f6ea283ccb98210507f3",
|
|
762
|
-
"altinn.brand1.7": "675968cbc559c08c7a44b27720d2364b5b4c155a",
|
|
763
|
-
"altinn.brand1.8": "0c9d37aa84f6a3cf054a6e06eb8337b1babd7b7e",
|
|
764
|
-
"altinn.brand1.9": "3522eab9ebfc2ae5c91a580feaf70465e9748f89",
|
|
765
|
-
"altinn.brand1.10": "3e61a3494660d174df6bab736a87675ab62ff87e",
|
|
766
|
-
"altinn.brand1.11": "3d4c53b43568c37b4ea9c2635cf5958fc739bf64",
|
|
767
|
-
"altinn.brand1.12": "a706bba785733f72521a3c632e25df975f98a08c",
|
|
768
|
-
"altinn.brand1.13": "f9ed3353c4e61b94c8a74e2c2fd72397cedc408f",
|
|
769
|
-
"altinn.brand1.14": "4377a455be6da7abf2f3ce7107a6854c28f40d94",
|
|
770
|
-
"altinn.brand1.15": "093c525a697bcde5ba27edf9b468b2e9407b82e6",
|
|
771
|
-
"altinn.brand1.16": "e78c591644329c8e13ee835622fd953bd0d9b414",
|
|
772
|
-
"altinn.brand2.1": "513d52765402e5c084a20c23ed21a2d739109b35",
|
|
773
|
-
"altinn.brand2.2": "0ee7ac0a9763ab782ec40b93a043a3d10c999ff9",
|
|
774
|
-
"altinn.brand2.3": "1c943c957030b1afcd70e01530035db77f0ebc34",
|
|
775
|
-
"altinn.brand2.4": "73adbc11588a4d41a0358fd7a327678af7138191",
|
|
776
|
-
"altinn.brand2.5": "1d3384f44d226abebb3b43b9988a11dff93333de",
|
|
777
|
-
"altinn.brand2.6": "3e1fd231892a974c1d338217072c2e9abdc7e904",
|
|
778
|
-
"altinn.brand2.7": "b3d2b34807b4775678254f1bbb893e7bf7a40908",
|
|
779
|
-
"altinn.brand2.8": "987afc969a5de78dc72208980c939bedc1ad88b4",
|
|
780
|
-
"altinn.brand2.9": "e82328a15d454b8a03ac04813136a8239e99b85d",
|
|
781
|
-
"altinn.brand2.10": "6d006ead8798823fed87eacfd2dc51695b0825ad",
|
|
782
|
-
"altinn.brand2.11": "58a1ebcebbd1df26bc50e8d52d39ed3711c8c3a7",
|
|
783
|
-
"altinn.brand2.12": "5b729c155ebffd620d57c33e291660f11b1884fa",
|
|
784
|
-
"altinn.brand2.13": "14c388ee4151f1e1f7ac2952658dcb89cab56370",
|
|
785
|
-
"altinn.brand2.14": "72b8ef43cc877a6ac3cb70d9ac2be42b1572e167",
|
|
786
|
-
"altinn.brand2.15": "25e59715d734c2451c357e141d1443ea1b6ef8e1",
|
|
787
|
-
"altinn.brand2.16": "80c31c85c0cb53db0b10b27230b9294b11bdf781",
|
|
788
|
-
"altinn.brand3.1": "871caba07e4fcb0fe56cfb939379ada95b487a05",
|
|
789
|
-
"altinn.brand3.2": "61f7371f2e403d7254b021c7711fcdf2e0dd131b",
|
|
790
|
-
"altinn.brand3.3": "c96a53b053fbd2ce612be43442568044e25287da",
|
|
791
|
-
"altinn.brand3.4": "1375f6d1141d514228812dd9c7b2bcf6fd68ec75",
|
|
792
|
-
"altinn.brand3.5": "245734869366fea1a8a0f6e921e2427ad42b196e",
|
|
793
|
-
"altinn.brand3.6": "95e8129218f51648fb283da8643f36e8013f38eb",
|
|
794
|
-
"altinn.brand3.7": "4d6259705c8938fa22307738cac8bad63d37a418",
|
|
795
|
-
"altinn.brand3.8": "a607b57ddeff2406b433212ec8f0d3e63e23b7eb",
|
|
796
|
-
"altinn.brand3.9": "f29d2dce85293e7bfc18561d47306c7b9af5e20c",
|
|
797
|
-
"altinn.brand3.10": "bc5f8d97862c89b6a0e196e49603918f742bec42",
|
|
798
|
-
"altinn.brand3.11": "92396787b7970ddbd54f3a90b2542baa0b0fb240",
|
|
799
|
-
"altinn.brand3.12": "31cc5bc290a45d598d2a76539cf8810ea1be23db",
|
|
800
|
-
"altinn.brand3.13": "934d8791f5ec56b0f9f7d66718d2d8ceeb800290",
|
|
801
|
-
"altinn.brand3.14": "2168184d996c3244e5e056faf9a1a46084c42879",
|
|
802
|
-
"altinn.brand3.15": "d0b9f91f14ff9aaa2db5372121cca90c226bda8f",
|
|
803
|
-
"altinn.brand3.16": "227ccf89ba5a96077b4d8b01a2fbd22d20e6f79e",
|
|
804
|
-
"altinn.neutral.1": "c255bb972d1a0cdef886b080b10920c295076162",
|
|
805
|
-
"altinn.neutral.2": "6aab85649aa5ee41e26a6a30e34eee1d9666a723",
|
|
806
|
-
"altinn.neutral.3": "261e25578ec0b953f52f3ad695aa640232af1e93",
|
|
807
|
-
"altinn.neutral.4": "bda06909ff48ed52390267ff56c8a5e24d94072c",
|
|
808
|
-
"altinn.neutral.5": "b640b85d1b7589224b31f13c1298f2eb7e34109c",
|
|
809
|
-
"altinn.neutral.6": "4bedeb4aeaf217ca0f234e721f5c3018d18679cd",
|
|
810
|
-
"altinn.neutral.7": "b8ae8fe38bd25646fe4ab6b135a3d0b4ebfe1a09",
|
|
811
|
-
"altinn.neutral.8": "20ff7324c6590e88410a8df11d2e4eac219e6b40",
|
|
812
|
-
"altinn.neutral.9": "ca35f86b8d225bc8d282c38f0118914183e496b7",
|
|
813
|
-
"altinn.neutral.10": "170c5343f26d7130010e6e6ea8896640b746324a",
|
|
814
|
-
"altinn.neutral.11": "d23fc8baa639efb8d1879893ffbcf4ccf21b09ea",
|
|
815
|
-
"altinn.neutral.12": "1e24159f68dc90a3839d68de4c25551bc90e7d2d",
|
|
816
|
-
"altinn.neutral.13": "55ae06a13c6dd5496df542e694dd91d50826206c",
|
|
817
|
-
"altinn.neutral.14": "4dab602f3d953a955c5fbd170ecd792f9e82aeb1",
|
|
818
|
-
"altinn.neutral.15": "5d2f1c09d43b315a8680e22c8201c52158ba2f60",
|
|
819
|
-
"altinn.neutral.16": "166c166b76231a8a8ed84212ecfaf1d5568955c2",
|
|
820
|
-
"uutilsynet.accent.1": "f3d2f6c290be99d776ee8983789da10d0018f91d",
|
|
821
|
-
"uutilsynet.accent.2": "97e61367a23cffa34c2c82119917a24b52f30644",
|
|
822
|
-
"uutilsynet.accent.3": "0a4ca6912aaa41d6948494781c5edbb565b3d775",
|
|
823
|
-
"uutilsynet.accent.4": "7486183d5951417b3feb6a85ebf7d211036a3374",
|
|
824
|
-
"uutilsynet.accent.5": "963bd062b52c96dcf0bd7b90702d2eefa1907814",
|
|
825
|
-
"uutilsynet.accent.6": "b645621d9600c9ba89c739797046b993b587dffe",
|
|
826
|
-
"uutilsynet.accent.7": "b898cdc8dfdb28cec2607cd831a14881fc148ac4",
|
|
827
|
-
"uutilsynet.accent.8": "aaa61e72469daeb4c00017bf7a148b956c6bf2c1",
|
|
828
|
-
"uutilsynet.accent.9": "5841059b0e7019c87139ad980d6a2a23598db0fc",
|
|
829
|
-
"uutilsynet.accent.10": "c061de53a650ecddc3a3f79209509c4c2a05b89e",
|
|
830
|
-
"uutilsynet.accent.11": "0709bd790b2d97fb62f637de1cb916e39c468315",
|
|
831
|
-
"uutilsynet.accent.12": "f9b61a29276d2e5967e739cb2a1f6d6ed52518fa",
|
|
832
|
-
"uutilsynet.accent.13": "39bc70eeea12684983d1b846de4286d41a7d0acd",
|
|
833
|
-
"uutilsynet.accent.14": "8d83052b3ffd4198d4ebe2ed7e03ce1597b35461",
|
|
834
|
-
"uutilsynet.accent.15": "c02f322a5dd8ca17d8a89074253a3452765f3ed4",
|
|
835
|
-
"uutilsynet.accent.16": "fcda90dfc75e2c8fa706dedeb759cf7c6da2ebe4",
|
|
836
|
-
"uutilsynet.brand1.1": "eef26815d95f5078aa95f61e9d124e5fe1f20483",
|
|
837
|
-
"uutilsynet.brand1.2": "19237aaaa44371a8e14ee6a83ec1f8c72aee0540",
|
|
838
|
-
"uutilsynet.brand1.3": "c84ed41674054143e54f24a878a3365e22adf50f",
|
|
839
|
-
"uutilsynet.brand1.4": "24da5a826852c3f7d1cdb8f791d733922eb91b4f",
|
|
840
|
-
"uutilsynet.brand1.5": "58948fa1db59c52b53b12959c8e8aa9636f81916",
|
|
841
|
-
"uutilsynet.brand1.6": "76fc1b8cfe4b0b71b55f3aef56dee3a383a65cac",
|
|
842
|
-
"uutilsynet.brand1.7": "ed7c0ff14b1ba0c0c20fd2c0c9d0594d69992a19",
|
|
843
|
-
"uutilsynet.brand1.8": "32d817a7fcee49832389e339489bbe00bcc6061f",
|
|
844
|
-
"uutilsynet.brand1.9": "14c815fd7907f0a8ab0aea86706d906f2b9f8ab3",
|
|
845
|
-
"uutilsynet.brand1.10": "2b62dacd76f9c852663b5d59d8d2a01610908a66",
|
|
846
|
-
"uutilsynet.brand1.11": "c3db8ec8b1194c9f8b1903156034155f6d9b1fe2",
|
|
847
|
-
"uutilsynet.brand1.12": "598b49515f61be7d78bf742adbe1e16438684ed3",
|
|
848
|
-
"uutilsynet.brand1.13": "6781cb8758421ffbd655493e3f1a9128a0b52913",
|
|
849
|
-
"uutilsynet.brand1.14": "a0a046c964098d4dc3633750188a3bf61239aa54",
|
|
850
|
-
"uutilsynet.brand1.15": "6bb484a56c82325be5ec0a8b35db5827e09386be",
|
|
851
|
-
"uutilsynet.brand1.16": "f891f87ec1dc9f9ae99055ce0699a418d7c485fa",
|
|
852
|
-
"uutilsynet.brand2.1": "1c50871cd57953360e1d832fdb85b23cdcf614cc",
|
|
853
|
-
"uutilsynet.brand2.2": "c5f3e888699cc7c3f98995f5a8bb8aa62090188b",
|
|
854
|
-
"uutilsynet.brand2.3": "6ce954ae850f3af975ea9808f9ce8b1cfa98b441",
|
|
855
|
-
"uutilsynet.brand2.4": "6440a7c16121c780f3ccadcc1210cb302cbd546f",
|
|
856
|
-
"uutilsynet.brand2.5": "34cd32ef946926cf0577101f4d5649a8e541c7cd",
|
|
857
|
-
"uutilsynet.brand2.6": "ea796ea2f374de870cd7aa32b7ff574fda65223b",
|
|
858
|
-
"uutilsynet.brand2.7": "f37e30188f1f846f29a43cd4c85b31f8ccddadc9",
|
|
859
|
-
"uutilsynet.brand2.8": "e6555814b75c2144a145e20031b56746c407b5aa",
|
|
860
|
-
"uutilsynet.brand2.9": "4706af8731c24a5905175ad35486af3856a1beed",
|
|
861
|
-
"uutilsynet.brand2.10": "0996ec5dff844ed8c440486492f34ec5b5465b0f",
|
|
862
|
-
"uutilsynet.brand2.11": "1f6927a2cda39ca749bf9bbc784c4c8ddd7be259",
|
|
863
|
-
"uutilsynet.brand2.12": "453efe1766971a392ca8fc667d43e9df96e4d379",
|
|
864
|
-
"uutilsynet.brand2.13": "88a7f3c85c9175395df40e694e3c34a26d51e984",
|
|
865
|
-
"uutilsynet.brand2.14": "7aa75b8d88eb0812dc3490a2b1f1b16841f19cf3",
|
|
866
|
-
"uutilsynet.brand2.15": "c3c3fb8fb0f5884987ed1b90e0ccc485b4947fc9",
|
|
867
|
-
"uutilsynet.brand2.16": "7aabb60e5bd7e3c03b3fe3bdbc5ecf4cf2129137",
|
|
868
|
-
"uutilsynet.brand3.1": "949a9a6f88513adeca3ae41586c6a069600e1b25",
|
|
869
|
-
"uutilsynet.brand3.2": "9f17e56de93b718b0a121a89576fd83866da980c",
|
|
870
|
-
"uutilsynet.brand3.3": "6ba89e04776f45a56c5de3be5fd3f225fda5d32d",
|
|
871
|
-
"uutilsynet.brand3.4": "fff74d8c8ceb0a230860d6dd70aaad401eeb399b",
|
|
872
|
-
"uutilsynet.brand3.5": "604dbdfff4b6403cf0c7a3c5483cfe2f3b03685e",
|
|
873
|
-
"uutilsynet.brand3.6": "e97347f1ed5db234e49522fe607731ee1f5c8b64",
|
|
874
|
-
"uutilsynet.brand3.7": "9ab63ff09d601fc778f506846e5b608995fd5d23",
|
|
875
|
-
"uutilsynet.brand3.8": "82db15e3ac0da607811a1b00b63b2ad9dd4d1dae",
|
|
876
|
-
"uutilsynet.brand3.9": "5428d2c89cce7f37155620dbf8ebc65b878910a5",
|
|
877
|
-
"uutilsynet.brand3.10": "3889ef29934ced7dcdaa8023b88233fc97cccb5b",
|
|
878
|
-
"uutilsynet.brand3.11": "1cd15452f30d9eb03c3742ee9e631449e733732f",
|
|
879
|
-
"uutilsynet.brand3.12": "a03b174e238e706a3420e2f03f1d066a22417135",
|
|
880
|
-
"uutilsynet.brand3.13": "feceda6d127f6316a2c6eb3ec46ffaf108027e3b",
|
|
881
|
-
"uutilsynet.brand3.14": "8f6fdb507c69e1612cd97fa6700d943a7695dff9",
|
|
882
|
-
"uutilsynet.brand3.15": "2338fed197c93864e9b3d5b51e1920ef1699453e",
|
|
883
|
-
"uutilsynet.brand3.16": "06700853e43eae96bd670c337c09dd1a28a287ca",
|
|
884
|
-
"uutilsynet.neutral.1": "ab65a178f0c62232a7758e3fad635fc5debd3118",
|
|
885
|
-
"uutilsynet.neutral.2": "6ab82659bc39b0fc1424b6d7869096e87697907f",
|
|
886
|
-
"uutilsynet.neutral.3": "ec3953e3a06afbf8a143c73adaba2c156f7c49f3",
|
|
887
|
-
"uutilsynet.neutral.4": "917135227c6447bb144b4f4250976d67e429eb8c",
|
|
888
|
-
"uutilsynet.neutral.5": "d040b388d7006cd10cf2bd352f73222bea2150fd",
|
|
889
|
-
"uutilsynet.neutral.6": "28556bca0c40e47185e5a665220b2cc0267ff1af",
|
|
890
|
-
"uutilsynet.neutral.7": "37bcd472351a182bda2a14e5f1d8f58ae6c75d4d",
|
|
891
|
-
"uutilsynet.neutral.8": "f28d1d5fc63b361541d4f95969b1bad3a3750baf",
|
|
892
|
-
"uutilsynet.neutral.9": "d11e2e6b03d74a63d78ea49328d688918d3dbf06",
|
|
893
|
-
"uutilsynet.neutral.10": "caa918f1ca848042678beff98977717cec60dfad",
|
|
894
|
-
"uutilsynet.neutral.11": "9f00a873b72c9a0fb95bae41c65977296e01acc5",
|
|
895
|
-
"uutilsynet.neutral.12": "78d0f33d33b5a4ace929f5011b4688f6a32f4f86",
|
|
896
|
-
"uutilsynet.neutral.13": "c32023ac4cd50b7890d2d384c434d522ab4a761a",
|
|
897
|
-
"uutilsynet.neutral.14": "8ed0fe42b1d055ca7f2038b2008905d45e259a84",
|
|
898
|
-
"uutilsynet.neutral.15": "d813a7245fce3b0eb315634a8a030c5d03c2b5ff",
|
|
899
|
-
"uutilsynet.neutral.16": "7727f6d6ac388d991094907ec59f1a4ef65ec468",
|
|
900
|
-
"portal.accent.1": "fe36f2c126fc4aca6925f4b273fe80520da6b48d",
|
|
901
|
-
"portal.accent.2": "76589c384669be607ea658306e7d81bfa4ee68c2",
|
|
902
|
-
"portal.accent.3": "c60ed610c9e1f7fe674922858abbb68fbb0eef9c",
|
|
903
|
-
"portal.accent.4": "76e0df55f7c81cb418179ee88afdbb661394ac48",
|
|
904
|
-
"portal.accent.5": "ac8e1b780e5f8d3674f67d283b87f9973ce4524d",
|
|
905
|
-
"portal.accent.6": "3f3ebd10725180a11b965808e4e7edca14500501",
|
|
906
|
-
"portal.accent.7": "1c723fb54aea1b3f0f005d07f51716510485a769",
|
|
907
|
-
"portal.accent.8": "5ea6a5c46157d1a654669797da38d31534540670",
|
|
908
|
-
"portal.accent.9": "3fc7fd8c2194673be61dcc7a2e14ec3ac7cb15d3",
|
|
909
|
-
"portal.accent.10": "99f77db40f2011ef9d5edc894cd90e981780441c",
|
|
910
|
-
"portal.accent.11": "19e76920b32e6070a07758568eca31d4ec3d1718",
|
|
911
|
-
"portal.accent.12": "4b9f01b9180159cec03ddb258b447f2f71e402f3",
|
|
912
|
-
"portal.accent.13": "6664f77312408077f09642ec8c8dfe1baa82ddb3",
|
|
913
|
-
"portal.accent.14": "b149e4cd661b9ff692b7c9345bd41031293ac7a4",
|
|
914
|
-
"portal.accent.15": "53da7213e03b3027b78332d2691e2c8091e53179",
|
|
915
|
-
"portal.accent.16": "45462f49dab0d604b66d9a290cfa35b19c08b497",
|
|
916
|
-
"portal.brand1.1": "13990e04d5e8f6c7e8e8227cc9429fc8be31c57e",
|
|
917
|
-
"portal.brand1.2": "8702231c993c2f0044f6000d49e9dad1d56c75aa",
|
|
918
|
-
"portal.brand1.3": "294c2a837d49443aed922b66eb09885087e3ca02",
|
|
919
|
-
"portal.brand1.4": "59405c43167d857865c699a61000a1bef0e7dc23",
|
|
920
|
-
"portal.brand1.5": "91ef198aa6b7ec816a8f4ee0c3691ff6b1990fb0",
|
|
921
|
-
"portal.brand1.6": "f7558d1fafcebc890d1db3336babe281a51d0a45",
|
|
922
|
-
"portal.brand1.7": "f2927d4281cc5edb143b70e2fd8d5bf5b249c5f5",
|
|
923
|
-
"portal.brand1.8": "d8d6e07b82831925fb412fe438af5fe1e97765be",
|
|
924
|
-
"portal.brand1.9": "8a20330208c1884becd8bd2f10eb65c04f4f06a3",
|
|
925
|
-
"portal.brand1.10": "17e03bc5be3177d0e9857f1323f31cde74433665",
|
|
926
|
-
"portal.brand1.11": "7f49d3e8b9899505e49bd87285e196f6dc9dc78f",
|
|
927
|
-
"portal.brand1.12": "49fd7eee74c89513053f4f104f095ac092e5e7de",
|
|
928
|
-
"portal.brand1.13": "3c894b17605b6a29ac97b40d636818c6e25ba0a8",
|
|
929
|
-
"portal.brand1.14": "95a6319ad18dd8399f121d565223d426002458bb",
|
|
930
|
-
"portal.brand1.15": "7e3205afe8df71b0cd48dbd9c22f921207bd571d",
|
|
931
|
-
"portal.brand1.16": "4721d3caed8dfadf62d53ed10a31f4c477fbd035",
|
|
932
|
-
"portal.brand2.1": "bf0648f9d3f3881748f4bec9a4c25bf2b500bcb7",
|
|
933
|
-
"portal.brand2.2": "b7c7dc119cf09253f02fbc54425b8b993db82b3e",
|
|
934
|
-
"portal.brand2.3": "b3fd18f771f41f13e9ea2a2e6608f74d153fbf84",
|
|
935
|
-
"portal.brand2.4": "0d7cf4cfe24abe1b469f31fbcbde74717cbd5f06",
|
|
936
|
-
"portal.brand2.5": "cbe1d22baa2f23e1788d11a92739d0fb26427a0f",
|
|
937
|
-
"portal.brand2.6": "daf7bbd9af460a9a71d10a7b8073d6a67104cd4a",
|
|
938
|
-
"portal.brand2.7": "970d1a3d99a43331fbd1f58dad543de35c51eac1",
|
|
939
|
-
"portal.brand2.8": "91fa0e9798eb99ea24a7b71fc849e8e766dd8785",
|
|
940
|
-
"portal.brand2.9": "b70e0084db30ebfed74ca059f6c4bf6b92819ff1",
|
|
941
|
-
"portal.brand2.10": "30e568ee86f3654ade285e9f8e477e189fa2b672",
|
|
942
|
-
"portal.brand2.11": "52574d96ff7cced331e9d8279e907186d82d7df5",
|
|
943
|
-
"portal.brand2.12": "39a2bd8ccbd38dc8069b3b07e71d3175e0bdea07",
|
|
944
|
-
"portal.brand2.13": "b2223c13ea9441c5421bda8777490637c644edeb",
|
|
945
|
-
"portal.brand2.14": "640739412e67197c99577296c6dba7715177e0d9",
|
|
946
|
-
"portal.brand2.15": "0a8096bb96f697c92616a534613a89a4ccff34c0",
|
|
947
|
-
"portal.brand2.16": "5c26cd8a1e0115f6be7e4df9aa899cd14370308a",
|
|
948
|
-
"portal.brand3.1": "8b17b038829930109a1ad12c89749ad6ac246147",
|
|
949
|
-
"portal.brand3.2": "3479925e9abeba538ea9a18d3f6da1a0ca72b5f6",
|
|
950
|
-
"portal.brand3.3": "30c3ea469e1eb46273e99c9550128d654af3174b",
|
|
951
|
-
"portal.brand3.4": "d106f07e1e131f36e4ad24a85f416afd9a20c0c2",
|
|
952
|
-
"portal.brand3.5": "7b17706a1d45fa0548f7b0ffdfa16da7f2b771db",
|
|
953
|
-
"portal.brand3.6": "1a8f718eea9ff9181251e06aa711cfaca8d0f03a",
|
|
954
|
-
"portal.brand3.7": "6aa9a6dc4982302216ee4b17730b1fa002a05189",
|
|
955
|
-
"portal.brand3.8": "92b2aba55b0ac298a4bc2691393c46e510b055e4",
|
|
956
|
-
"portal.brand3.9": "dcc4c5fccb713592739cc6a93e8c09fc9dd626ce",
|
|
957
|
-
"portal.brand3.10": "9c07fc0da8df2d239f45ec443bf43c7d78ebf608",
|
|
958
|
-
"portal.brand3.11": "171f229b471305defc943bc597fb75c502e7ea0a",
|
|
959
|
-
"portal.brand3.12": "58d54c676ffb7863ab46b91ef6f073781816e4c9",
|
|
960
|
-
"portal.brand3.13": "af4bc80a61d4b5d71023a6125bf60f03e87507ab",
|
|
961
|
-
"portal.brand3.14": "e08027c2a6379925fabf66604754674fe40f0b75",
|
|
962
|
-
"portal.brand3.15": "469eca49c985b3c5a5f0d323b94c3347f194fb66",
|
|
963
|
-
"portal.brand3.16": "5151f138bc44886fd0a2cb4d514fdf0f484d85e1",
|
|
964
|
-
"portal.neutral.1": "99e63ae87185c1bf94841abce17d60f49089019c",
|
|
965
|
-
"portal.neutral.2": "dd230ead57c4e461292918c41e6f9d8008bb445b",
|
|
966
|
-
"portal.neutral.3": "05d553c0f57e387d0c9ad2e749ab33f4ece01a3b",
|
|
967
|
-
"portal.neutral.4": "9fab3210fa1a59cef770e5dea2d0cc7cbd4881ea",
|
|
968
|
-
"portal.neutral.5": "abe10b5d96d4a20b3ac0f84b75d896c0c1dd7cb1",
|
|
969
|
-
"portal.neutral.6": "e19ccf18bde31769ab97a46f70b252b6efc4a19c",
|
|
970
|
-
"portal.neutral.7": "c40c91528a1ea6af1db2e2a401e8575d9476e45a",
|
|
971
|
-
"portal.neutral.8": "90d9466e4229b99294052989d36dc6a4cf359b2b",
|
|
972
|
-
"portal.neutral.9": "5ddc2b00dc5b6380cd524cabf0db71e9394f8e0e",
|
|
973
|
-
"portal.neutral.10": "a25dd9806cae767e0273700d2de340e7e49bff32",
|
|
974
|
-
"portal.neutral.11": "e0bb00e92041079bee0fd39bd302675ff159c9f7",
|
|
975
|
-
"portal.neutral.12": "ca97f7417ceb91ee311a9939cfd0b74e9b57eeee",
|
|
976
|
-
"portal.neutral.13": "aa9cd80388b52484bd5a7175bf2323adf146e330",
|
|
977
|
-
"portal.neutral.14": "843f2dcd2679e4beb168d83a91dc0b2ec375d11d",
|
|
978
|
-
"portal.neutral.15": "70670eb0b285375dbad02ecbd342a1e422df6335",
|
|
979
|
-
"portal.neutral.16": "8fd76cefbdee15282dadbfed662921c7e77db812"
|
|
980
|
-
},
|
|
981
|
-
"group": "Color scheme"
|
|
982
|
-
},
|
|
983
|
-
{
|
|
984
|
-
"id": "368d753fcac4455f289500eaa42e70dc0a03522f",
|
|
985
|
-
"name": "primary",
|
|
986
|
-
"$figmaStyleReferences": {},
|
|
987
|
-
"selectedTokenSets": {
|
|
988
|
-
"primitives/modes/typography/primary/digdir": "enabled",
|
|
989
|
-
"primitives/modes/typography/primary/altinn": "enabled",
|
|
990
|
-
"primitives/modes/typography/primary/uutilsynet": "enabled",
|
|
991
|
-
"primitives/modes/typography/primary/portal": "enabled"
|
|
992
|
-
},
|
|
993
|
-
"$figmaCollectionId": "VariableCollectionId:36248:20769",
|
|
994
|
-
"$figmaModeId": "36248:2",
|
|
995
|
-
"$figmaVariableReferences": {
|
|
996
|
-
"altinn.bold": "3af4338852fc67331cf46c429493ccc5f7e09899",
|
|
997
|
-
"altinn.extra-bold": "b4ec11d393468420a89988b9a11979aeeea32c50",
|
|
998
|
-
"altinn.regular": "770eecc1f59894aa05daaa4574006edd0bc19529",
|
|
999
|
-
"uutilsynet.bold": "ae115e5abeb6b8cde347c18753ccd04d0fbeab16",
|
|
1000
|
-
"uutilsynet.extra-bold": "7bf9d7606f15b50122745802c38324ff2bd1b712",
|
|
1001
|
-
"uutilsynet.regular": "e8a386d8fcb4aecb8ba13a4a5e7587c156c1a244",
|
|
1002
|
-
"portal.bold": "5a2c9d220adc36dd0006ea89dee954faba51579e",
|
|
1003
|
-
"portal.extra-bold": "9bf5619eaa33305407b1cafdba23bb9f61db318c",
|
|
1004
|
-
"portal.regular": "494220ceeec054c743b337943dd3c7768feb9db0",
|
|
1005
|
-
"digdir.font-weight.semibold": "cbc7c1691a8a78015feaaf737170d1bad69127f3",
|
|
1006
|
-
"digdir.font-weight.medium": "e0ba0f14f562bd47bbbc2762b0276952bff6dc0e",
|
|
1007
|
-
"digdir.font-weight.regular": "428c6974bf9dfefd2b6aa6773cabb22759aa5536",
|
|
1008
|
-
"digdir.font-family": "856b5d6abbcf6bc06b02838682edab2667c12783",
|
|
1009
|
-
"altinn.font-family": "7efa525773ed529cfeb44e208412f02539868535",
|
|
1010
|
-
"uutilsynet.font-family": "5e762a7b0a24e3281508b05856e24794ff01d084",
|
|
1011
|
-
"portal.font-family": "b1f98b1619271bd779e64a70e601ed407a2d6b3f"
|
|
1012
|
-
},
|
|
1013
|
-
"group": "Typography"
|
|
1014
|
-
},
|
|
1015
|
-
{
|
|
1016
|
-
"id": "264b8bd1d40b364e1ea3acf09e49795ddd4c513c",
|
|
1017
|
-
"name": "secondary",
|
|
1018
|
-
"$figmaStyleReferences": {},
|
|
1019
|
-
"selectedTokenSets": {
|
|
1020
|
-
"primitives/modes/typography/secondary/digdir": "enabled",
|
|
1021
|
-
"primitives/modes/typography/secondary/altinn": "enabled",
|
|
1022
|
-
"primitives/modes/typography/secondary/uutilsynet": "enabled",
|
|
1023
|
-
"primitives/modes/typography/secondary/portal": "enabled"
|
|
1024
|
-
},
|
|
1025
|
-
"$figmaCollectionId": "VariableCollectionId:36248:20769",
|
|
1026
|
-
"$figmaModeId": "36248:3",
|
|
1027
|
-
"$figmaVariableReferences": {
|
|
1028
|
-
"altinn.bold": "3af4338852fc67331cf46c429493ccc5f7e09899",
|
|
1029
|
-
"altinn.extra-bold": "b4ec11d393468420a89988b9a11979aeeea32c50",
|
|
1030
|
-
"altinn.regular": "770eecc1f59894aa05daaa4574006edd0bc19529",
|
|
1031
|
-
"uutilsynet.bold": "ae115e5abeb6b8cde347c18753ccd04d0fbeab16",
|
|
1032
|
-
"uutilsynet.extra-bold": "7bf9d7606f15b50122745802c38324ff2bd1b712",
|
|
1033
|
-
"uutilsynet.regular": "e8a386d8fcb4aecb8ba13a4a5e7587c156c1a244",
|
|
1034
|
-
"portal.bold": "5a2c9d220adc36dd0006ea89dee954faba51579e",
|
|
1035
|
-
"portal.extra-bold": "9bf5619eaa33305407b1cafdba23bb9f61db318c",
|
|
1036
|
-
"portal.regular": "494220ceeec054c743b337943dd3c7768feb9db0",
|
|
1037
|
-
"digdir.font-weight.semibold": "cbc7c1691a8a78015feaaf737170d1bad69127f3",
|
|
1038
|
-
"digdir.font-weight.medium": "e0ba0f14f562bd47bbbc2762b0276952bff6dc0e",
|
|
1039
|
-
"digdir.font-weight.regular": "428c6974bf9dfefd2b6aa6773cabb22759aa5536",
|
|
1040
|
-
"digdir.font-family": "856b5d6abbcf6bc06b02838682edab2667c12783",
|
|
1041
|
-
"altinn.font-family": "7efa525773ed529cfeb44e208412f02539868535",
|
|
1042
|
-
"uutilsynet.font-family": "5e762a7b0a24e3281508b05856e24794ff01d084",
|
|
1043
|
-
"portal.font-family": "b1f98b1619271bd779e64a70e601ed407a2d6b3f"
|
|
1044
|
-
},
|
|
1045
|
-
"group": "Typography"
|
|
1046
|
-
},
|
|
1047
|
-
{
|
|
1048
|
-
"id": "de7b392ea3a3ba7f9afc9e307bb834c9ec5e5f0c",
|
|
1049
|
-
"name": "<theme>",
|
|
1050
|
-
"$figmaStyleReferences": {},
|
|
1051
|
-
"selectedTokenSets": {
|
|
1052
|
-
"themes/<theme>": "enabled"
|
|
1053
|
-
},
|
|
1054
|
-
"$figmaCollectionId": "VariableCollectionId:36528:61712",
|
|
1055
|
-
"$figmaModeId": "40960:6",
|
|
1056
|
-
"$figmaVariableReferences": {
|
|
1057
|
-
"color.accent.1": "d57e9b1b26f7ec0af7a590ebcc81414ec4c9dedd",
|
|
1058
|
-
"color.accent.2": "de3963c909e278c1442f0f746002763506bdc3f3",
|
|
1059
|
-
"color.accent.3": "f20e35c5c0229b54a8a7a3c656dea1948b2750b4",
|
|
1060
|
-
"color.accent.4": "6ca5193143ecedb87966d55482cd754c31b80382",
|
|
1061
|
-
"color.accent.5": "c557bada980622750ae29bbbf685505587c31fa4",
|
|
1062
|
-
"color.accent.6": "885fe85f40884fea07f87859c3fe8939d808e33c",
|
|
1063
|
-
"color.accent.7": "a391ced167abf6b10a9a35705507761dd9256a67",
|
|
1064
|
-
"color.accent.8": "1373dd7a8a00fb2a0e4e49dcd1128f788c02214a",
|
|
1065
|
-
"color.accent.9": "198e233c4e85adca1483b9221d6cfc12ab6ef3d4",
|
|
1066
|
-
"color.accent.10": "7350ab90fca66ae7c9bdb3106532bdd110415669",
|
|
1067
|
-
"color.accent.11": "153245fd66c8d8ce55f8017e2376c3168a9d547b",
|
|
1068
|
-
"color.accent.12": "2d7025a144106aa3c54e9fe84d9d0d716701dd4b",
|
|
1069
|
-
"color.accent.13": "ae0f3073e6acc5d8da8ea854779b79d64cdd8e91",
|
|
1070
|
-
"color.accent.14": "e6707edb3ec60edde84fe341e0a19a03c2a176b8",
|
|
1071
|
-
"color.accent.15": "ddc1c50254633de2e5a78e65a17db3d86a6f0cfe",
|
|
1072
|
-
"color.accent.16": "2e9a64d28cec56c1f4ade66a88809eb21954fcfc",
|
|
1073
|
-
"color.neutral.1": "f943fe804a635e951ea5f3b18c336b94d1ced599",
|
|
1074
|
-
"color.neutral.2": "f2a916f3c3bd96e0d64fe62702e30877b3d19136",
|
|
1075
|
-
"color.neutral.3": "8d54f45aef90401d3bea38fa2523a831bc006cb6",
|
|
1076
|
-
"color.neutral.4": "84bb3e674bb40e8e9637adb19a227c8651e025ba",
|
|
1077
|
-
"color.neutral.5": "afebc11336fac619672ddba1b483c402f78c93a6",
|
|
1078
|
-
"color.neutral.6": "eef38f4886935887f7c5baa39a978fbb8dfe4be5",
|
|
1079
|
-
"color.neutral.7": "d066cfef2a53014313d0b46295ded18ae71fe70e",
|
|
1080
|
-
"color.neutral.8": "196277919b1c8989cb48d64669ecb3b8a078c1df",
|
|
1081
|
-
"color.neutral.9": "212fe4731bd0cb224a4b2e4c8c2d92b460afca86",
|
|
1082
|
-
"color.neutral.10": "03ba954f0063c6559435d7cd4c4dbc6a1a10f55d",
|
|
1083
|
-
"color.neutral.11": "4772ca780405fbdda5cb1625c8cb7a10cf0417dd",
|
|
1084
|
-
"color.neutral.12": "30b1838bcfe59c82f64f04f98a9ccaeb704a8412",
|
|
1085
|
-
"color.neutral.13": "4e8e8df56aa5f03ea656a71efc353876d001947b",
|
|
1086
|
-
"color.neutral.14": "ffd7f08672b3c0279c512830d325e93d964e6163",
|
|
1087
|
-
"color.neutral.15": "f20564539bd756fa841c98f3b52bf0fe05e1ec13",
|
|
1088
|
-
"color.neutral.16": "6c748de83d2148555e00f26d1dd3ebc71bfe0ede",
|
|
1089
|
-
"color.brand1.1": "30544dbd7c178f2b72a2c2fbf0ea1276e18f037e",
|
|
1090
|
-
"color.brand1.2": "5060c8828379ec1adf652b31f5c2ae4690a1e024",
|
|
1091
|
-
"color.brand1.3": "3230c2ba7bf52fd0c429ec81c857aebb46496f2a",
|
|
1092
|
-
"color.brand1.4": "6576d5212c0d0378ef57c4edec16fa8a176e3be8",
|
|
1093
|
-
"color.brand1.5": "10e252f6922ac5bbe1f72e439d394a3ce84c93a4",
|
|
1094
|
-
"color.brand1.6": "84b3e5cc897f35a223de2b01e2eda4fb15e11631",
|
|
1095
|
-
"color.brand1.7": "77694e097bd34d4a25888be0ca113a8fe02ede16",
|
|
1096
|
-
"color.brand1.8": "a83d0826876f839f9dc5627220764c734e978a87",
|
|
1097
|
-
"color.brand1.9": "acd169a4d73a501980675431ce23b57a98d6b0cd",
|
|
1098
|
-
"color.brand1.10": "8310acfbdb5cef3731bdf8faba3fbf10c0cd6c66",
|
|
1099
|
-
"color.brand1.11": "45746549fa426171180413d990023fa8c1c60eb4",
|
|
1100
|
-
"color.brand1.12": "50378981d7ebb638fe058ad39cb7c688a631109e",
|
|
1101
|
-
"color.brand1.13": "a2edc2db18b135675e32db3cf90fe50253440cec",
|
|
1102
|
-
"color.brand1.14": "e9d1335542ea8ec87683184b079f8492b8d98b36",
|
|
1103
|
-
"color.brand1.15": "43f0b5cbce3e75a647d527906306e48533025768",
|
|
1104
|
-
"color.brand1.16": "6c20bf21b03696de2bc8f0455be55e671ef3b56c",
|
|
1105
|
-
"color.brand2.1": "fc8fdeb8820145da52224b88b291ef88bc890e55",
|
|
1106
|
-
"color.brand2.2": "12d9f6d498398621d2dc9b416110b5af6538a2a5",
|
|
1107
|
-
"color.brand2.3": "9a62bb1426e9f76535fc069d92095c2376d52454",
|
|
1108
|
-
"color.brand2.4": "1ae643be25f27d318418830e503fccae2f6a5e80",
|
|
1109
|
-
"color.brand2.5": "fbbf04c09d55b3ae872cc1bce7e126738494e259",
|
|
1110
|
-
"color.brand2.6": "5d1afc7dd9f8b2ee8fa39c732ae006fdf9b8b214",
|
|
1111
|
-
"color.brand2.7": "7c47ea9ad43ae0144db373baac73102b4f8dcae2",
|
|
1112
|
-
"color.brand2.8": "648e47a7cd96d49c0a125c6296a97634b730784a",
|
|
1113
|
-
"color.brand2.9": "2621e2ebac70764ea3bfb686730434908bd0327b",
|
|
1114
|
-
"color.brand2.10": "e79b44b0ff43729fb6cbd1b50adac2fc597470f0",
|
|
1115
|
-
"color.brand2.11": "49a79dcb670ec93eb9166441803254d757b94da6",
|
|
1116
|
-
"color.brand2.12": "914b0986fedc41fd2d29390d34a17d53f1024692",
|
|
1117
|
-
"color.brand2.13": "754bfcd9e21a9e06c6734c619e8e25e81914915e",
|
|
1118
|
-
"color.brand2.14": "da961adbaa9ea197f75eec6e28b40270ada01c1e",
|
|
1119
|
-
"color.brand2.15": "5871ed180680ffea0daaabd78052610a513cb8d3",
|
|
1120
|
-
"color.brand2.16": "1b9e87679ef1553d0f1724a13b051aef0e45f77f",
|
|
1121
|
-
"color.brand3.1": "5071a0ae81ab5bdcefc8ef86b561f698d842878a",
|
|
1122
|
-
"color.brand3.2": "45d5c9e753c173757161e3526064c79ba2e43800",
|
|
1123
|
-
"color.brand3.3": "413bc192ec41b1766fb00517c3ade123a00f0148",
|
|
1124
|
-
"color.brand3.4": "32ff692b53565a413c43d0041b77dc7e0581b02a",
|
|
1125
|
-
"color.brand3.5": "a87d187b5964c4c9e9809b3f7ecd1548ffdf2838",
|
|
1126
|
-
"color.brand3.6": "dd2325e32e34b154de2af87db33f23da526d6965",
|
|
1127
|
-
"color.brand3.7": "86e9ce4f29014334ae0dc007f73382038c1b3069",
|
|
1128
|
-
"color.brand3.8": "569b4608622bcdba7174d9f2e7e39333b8d2203b",
|
|
1129
|
-
"color.brand3.9": "b88890541720aed26c694cbbae82fd35656fe46f",
|
|
1130
|
-
"color.brand3.10": "4dad7b7a4336a116d3ab5591d31d915c709ed7b8",
|
|
1131
|
-
"color.brand3.11": "e5b1f59a67184ce3aa2e4caf2b6af5cf390663d2",
|
|
1132
|
-
"color.brand3.12": "bef58c17112627f6d67ce188d0ab68c2c682abb3",
|
|
1133
|
-
"color.brand3.13": "fbc9c17885e8248cd59157b6d07a8fe3a9386c55",
|
|
1134
|
-
"color.brand3.14": "4800bfc73d2fb46383e7d16ab5531e8a9419e9ec",
|
|
1135
|
-
"color.brand3.15": "6bcf7be039ae7e1fae1bd2bd37c850e43273477d",
|
|
1136
|
-
"color.brand3.16": "0cfbc6301ffe1e7bcc7cfb9dbc39765ccceaeb94",
|
|
1137
|
-
"font-weight.medium": "d48aac48a9fecf0dbe2e5c7b68427961007eac36",
|
|
1138
|
-
"font-weight.semibold": "d684180ad99ad0b200080b18529a25476554343f",
|
|
1139
|
-
"font-weight.regular": "82250a86efe7517071ff39e79b2579c5b57a6083",
|
|
1140
|
-
"border-radius.1": "430e4e34456fbd05b0a5a818a553626419608b2b",
|
|
1141
|
-
"border-radius.2": "d5832eb066c8b0a3dc25cded408a4d9f445432e2",
|
|
1142
|
-
"border-radius.3": "785c1cfff3d8b21a3a29744f5a0f45f1f3ec0827",
|
|
1143
|
-
"border-radius.4": "84a4998341610ba4b0013144a7f14d9d2533cb9d",
|
|
1144
|
-
"border-radius.5": "c1d38a59c2eb078642aafd112e1a23cc3107e2b1",
|
|
1145
|
-
"border-radius.6": "ec8f63c551a3feed56576a1030e284ea0efe7ed9",
|
|
1146
|
-
"border-radius.base": "80b5d08a35a320b9bd2d4ecdbe2ccf0086315b88",
|
|
1147
|
-
"border-radius.scale": "692a8c1f2038457a196ba0e077cdc70c6bad5e77",
|
|
1148
|
-
"font-family": "32f399ee0e608727f1c4d02e8ceb892a6c3e79e0"
|
|
1149
|
-
},
|
|
1150
|
-
"group": "Theme"
|
|
1151
|
-
},
|
|
1152
|
-
{
|
|
1153
|
-
"id": "541629445ef90ad5363f9e88f52a1ccb617e6f84",
|
|
1154
|
-
"name": "Semantic",
|
|
1155
|
-
"$figmaStyleReferences": {
|
|
1156
|
-
"typography.heading.2xl": "S:25216af21a5e11bb86329e19b8816c2f71dd5b68,",
|
|
1157
|
-
"typography.heading.xl": "S:e17f16aba334c6eea3d0b4cbe47859500e0a2018,",
|
|
1158
|
-
"typography.heading.lg": "S:7a128bed08569912da8ca9b44b381ab941917e34,",
|
|
1159
|
-
"typography.heading.md": "S:816c4fba6146f4a2c6129bf4d3bd51015696e71c,",
|
|
1160
|
-
"typography.heading.sm": "S:5e864c2b70508c966c687ab7c3ab99df73cd131e,",
|
|
1161
|
-
"typography.heading.xs": "S:bd9ed34ab139345ca55d684177fb3149cb42e876,",
|
|
1162
|
-
"typography.heading.2xs": "S:9b1cebab040d686bf6673eab8221df4dcbff6e97,",
|
|
1163
|
-
"typography.ingress.lg": "S:9037768d79b5bdbc3fc890ba11992e1522c105d1,",
|
|
1164
|
-
"typography.ingress.md": "S:3ab2a5a35b1d1ba00b3b2ad0b4e499dca262d26d,",
|
|
1165
|
-
"typography.ingress.sm": "S:f6daf4018e1fa3736ec070e8c04c8441474ba7f4,",
|
|
1166
|
-
"typography.ingress.xs": "S:f5b8a079944bd06aecd1233eb7962352a6322e88,",
|
|
1167
|
-
"typography.label.lg": "S:a648c3cc909e06de019c03dc4f0fe9b632f133c8,",
|
|
1168
|
-
"typography.label.md": "S:0b62f2c8a74888d1eb798014280bc3ecabc6e104,",
|
|
1169
|
-
"typography.label.sm": "S:d1864bfa5e9bec09d7f0f6ea711caa1ada82cad7,",
|
|
1170
|
-
"typography.label.xs": "S:0652ab75d388540fb362274838118fb253d37f04,",
|
|
1171
|
-
"typography.body.lg": "S:42d3202aa348967d4d4046be746682b1318e8826,",
|
|
1172
|
-
"typography.body.md": "S:5e8d3a4bd3997abdc4a8a76082e0d949c5891e2c,",
|
|
1173
|
-
"typography.body.sm": "S:de31401c8d7f73467955d800490fab0bf172c482,",
|
|
1174
|
-
"typography.body.xs": "S:26167e4e2b321a4844fa38f364005235950841b1,",
|
|
1175
|
-
"typography.body.short.lg": "S:7dad346ebcaa03090132ed5fd62898c0daabd25e,",
|
|
1176
|
-
"typography.body.short.md": "S:0a06e65c767198aa82639640cb71db59b9aab1c2,",
|
|
1177
|
-
"typography.body.short.sm": "S:5c98110f9bd67c47333848c1958aaf77d3a40fa7,",
|
|
1178
|
-
"typography.body.short.xs": "S:4fc178eb7023119c4352f0668f6cab7e5431d835,",
|
|
1179
|
-
"typography.body.long.lg": "S:9c7c3d2db94806ed5154997d1e2891cb561fce22,",
|
|
1180
|
-
"typography.body.long.md": "S:6c1e607695a6580e03cbfafc19d1ccd0cf101975,",
|
|
1181
|
-
"typography.body.long.sm": "S:130b4703250b813d4caa3a80cf6c99298e9751fe,",
|
|
1182
|
-
"typography.body.long.xs": "S:11866ebed76712786f3d96b29a24f4a582bc85d0,",
|
|
1183
|
-
"typography.body.xl": "S:1a95070f47e0fba591efbefe237e2ba65410008c,",
|
|
1184
|
-
"typography.body.short.xl": "S:ac182b4d24bf241219aa8846020a9d2941074aa1,",
|
|
1185
|
-
"typography.body.long.xl": "S:a8ea778d52402dfe5ee1cabd6ae616d886e9ee2c,",
|
|
1186
|
-
"shadow.xs": "S:fad58e5da8549c4fde08fdfabcdfd1fb247c1b98,",
|
|
1187
|
-
"shadow.sm": "S:ec2937cebc52017b48438781f6fb08b776dac5c2,",
|
|
1188
|
-
"shadow.md": "S:470554e98250b3824ac658b750030b80eca0323c,",
|
|
1189
|
-
"shadow.lg": "S:b71bfff7a6be076c2185269aadc5cbb1a327f927,",
|
|
1190
|
-
"shadow.xl": "S:6bc192c3dd214186531ec16708354edb928dffc6,",
|
|
1191
|
-
"typography.validation-message.lg": "S:7a8e15cd0b2fda15a7c0387e072d033dd3ad9302,",
|
|
1192
|
-
"typography.validation-message.md": "S:8cc49aad88fbe5a12945831e32faeaa1efccf109,",
|
|
1193
|
-
"typography.validation-message.sm": "S:b3f6ec0db77e8ac849e0bc8eca5eb24578b49571,",
|
|
1194
|
-
"typography.validation-message.xs": "S:07aa5d335158c30271227a5c18780b15e1840de2,"
|
|
1195
|
-
},
|
|
1196
|
-
"selectedTokenSets": {
|
|
1197
|
-
"semantic/style": "enabled",
|
|
1198
|
-
"semantic/color": "enabled",
|
|
1199
|
-
"primitives/globals": "source"
|
|
1200
|
-
},
|
|
1201
|
-
"$figmaCollectionId": "VariableCollectionId:34811:5976",
|
|
1202
|
-
"$figmaModeId": "34811:5",
|
|
1203
|
-
"$figmaVariableReferences": {
|
|
1204
|
-
"color.accent.background-default": "66c251d95021cbe5b4637c3a5ae207332f5837cc",
|
|
1205
|
-
"color.accent.background-tinted": "a2f1ed081e377e79c001ad43116e6f0c8499a38b",
|
|
1206
|
-
"color.accent.surface-default": "69625ee2a8b486c80c99bbfc9c0f35f759a19659",
|
|
1207
|
-
"color.accent.surface-tinted": "7c238950d0ffd3e2981889d9ae76d73091daf3a4",
|
|
1208
|
-
"color.accent.surface-hover": "db062df391a602d0d1a51190d7689769a673aab1",
|
|
1209
|
-
"color.accent.surface-active": "3049055bdf19f8deb8cfb76c95c44dd988b83508",
|
|
1210
|
-
"color.accent.border-subtle": "921c4cf372d04b7700eae984c8b26575d8ae354c",
|
|
1211
|
-
"color.accent.border-default": "35e12d2ba2c4f4e879e1e3ff45a7df2d4e403e70",
|
|
1212
|
-
"color.accent.border-strong": "e95942abac0bc93a9ae6fafa5515ac1dd374b229",
|
|
1213
|
-
"color.accent.text-subtle": "3bbd197b66cc66bbd3d2900744851388be4b72ea",
|
|
1214
|
-
"color.accent.text-default": "89c3f327c6cc20255cfeaa457dc77c9a44cd0555",
|
|
1215
|
-
"color.accent.base-default": "38cbe65bbe3cfb034b8967c8c386745106ef9ae7",
|
|
1216
|
-
"color.accent.base-hover": "7da14d831efb79dd5b98bba555b5a65b522daa00",
|
|
1217
|
-
"color.accent.base-active": "dbf60c3000071d90a423895b2382b8908501e8ab",
|
|
1218
|
-
"color.accent.base-contrast-subtle": "c4ecc93f40a4724c3840977a5d1dfd546d2ddd4f",
|
|
1219
|
-
"color.accent.base-contrast-default": "fa3f09b27fdafc843530a2251462b1f77b8ab251",
|
|
1220
|
-
"color.neutral.background-default": "a14d8e1346e348ee1be85410149c19e584899964",
|
|
1221
|
-
"color.neutral.background-tinted": "b059c374e82aa3e339fc323e6a83db552d3c7968",
|
|
1222
|
-
"color.neutral.surface-default": "3a571bdb528e780365f961872a6fa3f7e9a47378",
|
|
1223
|
-
"color.neutral.surface-tinted": "099a511e5c8ea126a8273e92930e978f18c64065",
|
|
1224
|
-
"color.neutral.surface-hover": "37e22bf3f1d830720d49e733d952ea2b077e1fb7",
|
|
1225
|
-
"color.neutral.surface-active": "fddf14a7e2deaef8988f5ab45f0bf50ca0aef977",
|
|
1226
|
-
"color.neutral.border-subtle": "5be93e75750ef2a5f640cc6a7404b7a2ccb90c3a",
|
|
1227
|
-
"color.neutral.border-default": "ccc01af38a2b91e7758242e1eadaf1a755a9e9b3",
|
|
1228
|
-
"color.neutral.border-strong": "959c32c89390bb423014cee8e547a0e1da721dbf",
|
|
1229
|
-
"color.neutral.text-subtle": "da42f02ad3dc2c442a8c668d21c8d28dd270cb0a",
|
|
1230
|
-
"color.neutral.text-default": "51c3c7e277e3eb002b570a2570a8cb732d5db4a4",
|
|
1231
|
-
"color.neutral.base-default": "f09cf9d8cb875eb731f4aa191a7dc2db7d8bad59",
|
|
1232
|
-
"color.neutral.base-hover": "f780175ea1372f615d1567f0bb397284ac64e4d0",
|
|
1233
|
-
"color.neutral.base-active": "667d7e21dc171b6eb0683b610c58c47c44622326",
|
|
1234
|
-
"color.neutral.base-contrast-subtle": "43448c41aa963679dc3d548bd0ccbfa402d74043",
|
|
1235
|
-
"color.neutral.base-contrast-default": "2e68685b1271425be19b202b3d5ba4622337eb9a",
|
|
1236
|
-
"color.brand1.background-default": "73d773aa6ab6d7a4001710974ed2ae4e5b4d4dea",
|
|
1237
|
-
"color.brand1.background-tinted": "12838f40de64e9a8a158291376878d511f471124",
|
|
1238
|
-
"color.brand1.surface-default": "2a140ffc192ff3d36c5606d914f8d46903cecbab",
|
|
1239
|
-
"color.brand1.surface-tinted": "84f026c5c7f6e393de59660e84af9c908832f62a",
|
|
1240
|
-
"color.brand1.surface-hover": "298bf20662330889cbdc4f0dcdb811581ea41ae3",
|
|
1241
|
-
"color.brand1.surface-active": "3a32e777d515ba58db04298a7873366cc510ea0b",
|
|
1242
|
-
"color.brand1.border-subtle": "45db94769aecd7c8ad94efc5e324c11826060b90",
|
|
1243
|
-
"color.brand1.border-default": "326af5585ae9d7d99ce1678290ce5f96da940cd1",
|
|
1244
|
-
"color.brand1.border-strong": "f52c94f6123beba9b11fd213f6dcd1e9ec70b252",
|
|
1245
|
-
"color.brand1.text-subtle": "3b60d9bf398baa6237d43f2d7bff5b5cadf559b5",
|
|
1246
|
-
"color.brand1.text-default": "53809d4b416a36b60d7bca35a02b519b7023e3b8",
|
|
1247
|
-
"color.brand1.base-default": "485cfaf467d4836411697a9026e6a39f6d278e41",
|
|
1248
|
-
"color.brand1.base-hover": "b9906747d0ba47f6f3c6ca3388b38555434fd6bf",
|
|
1249
|
-
"color.brand1.base-active": "a0e90e1c9a2b08cdcffc56071c7a0a9cbca86ae8",
|
|
1250
|
-
"color.brand1.base-contrast-subtle": "fb3e9c06af93acfefb6849622a5803bad388d117",
|
|
1251
|
-
"color.brand1.base-contrast-default": "a633c2e98b11f0230d75fe414ec279b978c6a8bb",
|
|
1252
|
-
"color.brand2.background-default": "debb911b43b14ba32c857a8631a686c821ff8e1a",
|
|
1253
|
-
"color.brand2.background-tinted": "5a3d464fa9cd7b9300b21c588868c4dbeef2c984",
|
|
1254
|
-
"color.brand2.surface-default": "eeebfd8811581be18047a675023d938a091ffe73",
|
|
1255
|
-
"color.brand2.surface-tinted": "13afd12e87c4aba5f6099d94cc5e328ba806b97d",
|
|
1256
|
-
"color.brand2.surface-hover": "f98c24c1bdf2cec85c1dcfa13c688b140102a463",
|
|
1257
|
-
"color.brand2.surface-active": "05d9d0fa8aa67dbfcde76d9ac0169ace038a3c4b",
|
|
1258
|
-
"color.brand2.border-subtle": "3fbf2fd3ae6dc2f08303006d2a62e594e4c3cca9",
|
|
1259
|
-
"color.brand2.border-default": "4122faec7f97ae6a7ea984523a92bb4162f7277c",
|
|
1260
|
-
"color.brand2.border-strong": "05e2cf3bfa822a26a52562b9eac8550dbcce6740",
|
|
1261
|
-
"color.brand2.text-subtle": "c1aceba99760fba360791e6c82aabf37dd438535",
|
|
1262
|
-
"color.brand2.text-default": "ee9de0142ee0ddfbde31c8a8574da4e711d439ce",
|
|
1263
|
-
"color.brand2.base-default": "87957522a4114a16bc1f4423fbdd4e91dc9441d4",
|
|
1264
|
-
"color.brand2.base-hover": "3a7cd9fab4b14a7e2efa1e5170ddc1b85567a3a5",
|
|
1265
|
-
"color.brand2.base-active": "777859efebd75dcdf2b6361f62b917f5da5b7c5a",
|
|
1266
|
-
"color.brand2.base-contrast-subtle": "c7ad5188a72f7f27bbefeb94ab1a984b0e0295f1",
|
|
1267
|
-
"color.brand2.base-contrast-default": "9bf8de2d66b75ee276405df1fe2ff6f1c4892ed4",
|
|
1268
|
-
"color.brand3.background-default": "8c9a903d152a10227296dcde025422f3dbbb92c1",
|
|
1269
|
-
"color.brand3.background-tinted": "85ccd36d46b652b631d39e3b2228a237aeb8164a",
|
|
1270
|
-
"color.brand3.surface-default": "b32f32b9a420241a5e167fa8a015c5278db13ab6",
|
|
1271
|
-
"color.brand3.surface-tinted": "7c436164280f689d766d356996a92696ccc27de6",
|
|
1272
|
-
"color.brand3.surface-hover": "232948bd98dddd0f88d545f1635730be173f9123",
|
|
1273
|
-
"color.brand3.surface-active": "1507c48a662ebbaf2c50701b2d2f5b2310f43d80",
|
|
1274
|
-
"color.brand3.border-subtle": "fb4d7a26e0232159d7c3bf62ff5bdc5e9e4674dc",
|
|
1275
|
-
"color.brand3.border-default": "df8d094b36d903399a6ec179ccfde126783b25b5",
|
|
1276
|
-
"color.brand3.border-strong": "2809dda2b6abaff224999f8e093160e3a9f91924",
|
|
1277
|
-
"color.brand3.text-subtle": "5b15adf9dac2101dd116d072a44fc84388939913",
|
|
1278
|
-
"color.brand3.text-default": "1b799658b64445c0da0ad06290c2fbc8eb05e1bf",
|
|
1279
|
-
"color.brand3.base-default": "ffcb94d90e5e13d4bf5ae0a750c0e93767ebc920",
|
|
1280
|
-
"color.brand3.base-hover": "94e996642bdc4aa1e9bb2b1fa44340efe34ccdc7",
|
|
1281
|
-
"color.brand3.base-active": "234a0c65c34d913231c6fdd789295357b01c6ba1",
|
|
1282
|
-
"color.brand3.base-contrast-subtle": "403287e2fe083d594828a6aff27198a6ce67ba4c",
|
|
1283
|
-
"color.brand3.base-contrast-default": "9b12ad3d91e9141043b115fd078a7f68c208659e",
|
|
1284
|
-
"color.success.background-default": "3ceba0df8a643ce1b4e837d43c404d6de26d4de9",
|
|
1285
|
-
"color.success.background-tinted": "52863dd8c98275b4c407f89dd4904319735ad522",
|
|
1286
|
-
"color.success.surface-default": "f75e8e3d4795e7f7f87b95e9e5a3e96cc0e0d147",
|
|
1287
|
-
"color.success.surface-tinted": "27b8203a7d882771922916639d39480b1983564f",
|
|
1288
|
-
"color.success.surface-hover": "af6ccbd049931d4fc522ea043c279d829dc5ba21",
|
|
1289
|
-
"color.success.surface-active": "cfc21d99bfad388345eed3fc5c1f7e4837a70cc3",
|
|
1290
|
-
"color.success.border-subtle": "683928dcb1b06c0356109399563232aa4a68d1b8",
|
|
1291
|
-
"color.success.border-default": "040fd6ac84243c18792ee1d5598373d8027373f3",
|
|
1292
|
-
"color.success.border-strong": "3dc165d5189acd77df27c8a9480ee499bb0612b4",
|
|
1293
|
-
"color.success.text-subtle": "67587ca42f04d11dffb12f6dbce1760b18a157c4",
|
|
1294
|
-
"color.success.text-default": "49a31f6095fd75d4a3a36378f62f8a2789494917",
|
|
1295
|
-
"color.success.base-default": "f616aa19217d3e83d6df9cd30dc28e2a7e656a2a",
|
|
1296
|
-
"color.success.base-hover": "e2be90f26ba5e3b395cfd987878fd17969272f3e",
|
|
1297
|
-
"color.success.base-active": "0a54a342f41c8f894b66c409b44e6b4c141fcdc6",
|
|
1298
|
-
"color.success.base-contrast-subtle": "c7cc75502bd1c7813c03eee29da050d2014fc5f0",
|
|
1299
|
-
"color.success.base-contrast-default": "bd062599c0d058161c5c7bb29eeede7dc876befd",
|
|
1300
|
-
"color.danger.background-default": "3194ec8ad659d59d435cd58827b8c827aa3301cf",
|
|
1301
|
-
"color.danger.background-tinted": "267ae0499bdc74fcc791c131c69565f55b10429b",
|
|
1302
|
-
"color.danger.surface-default": "32f3a551f22dbd333cc85e41c0570f8940724f3f",
|
|
1303
|
-
"color.danger.surface-tinted": "7400f5d25c05c68ba9a039ed5b08c5562a5cd994",
|
|
1304
|
-
"color.danger.surface-hover": "0561b7bcb37ce638403eb04b117734eec1ca5ca0",
|
|
1305
|
-
"color.danger.surface-active": "caf64c5e05ab286bba71a178638717dc8e886702",
|
|
1306
|
-
"color.danger.border-subtle": "36991a1abbb5fc74b52713fa4172e9c726ac8107",
|
|
1307
|
-
"color.danger.border-default": "659c4d5adc45304a585ec470abeeee569e71e8be",
|
|
1308
|
-
"color.danger.border-strong": "96718dd9d79684713bf62fd71673e5a684de4a11",
|
|
1309
|
-
"color.danger.text-subtle": "e5fd38d47890f34bbee7412cad76dc7b90243d20",
|
|
1310
|
-
"color.danger.text-default": "33e5f472d3b5fe130205d3066717abbc28ce6d65",
|
|
1311
|
-
"color.danger.base-default": "625c866ee6cccefbd9b87e55949bfc3dfd5042f4",
|
|
1312
|
-
"color.danger.base-hover": "77444f414064689dc36b09769f24e045c5fcb8f7",
|
|
1313
|
-
"color.danger.base-active": "5900b4260bb4f15b0c61c084fadf02ce460ddd34",
|
|
1314
|
-
"color.danger.base-contrast-subtle": "2fc3dcbb4218d387eece257a8b155ada3e029cf7",
|
|
1315
|
-
"color.danger.base-contrast-default": "88f5cd336fe710432188750706bb00bac226a9ab",
|
|
1316
|
-
"color.info.background-default": "02b63f18e8bbdcc0f0504fbee86ca9648b2deba4",
|
|
1317
|
-
"color.info.background-tinted": "f718aca85f2448496c0dc530285c86a9f47f89fc",
|
|
1318
|
-
"color.info.surface-default": "07a6a56c00ff2e48deffc453f1f4553d34f728d4",
|
|
1319
|
-
"color.info.surface-tinted": "004c4e39590f3abb7450bc3df2b3c12c36d5b34e",
|
|
1320
|
-
"color.info.surface-hover": "a68f7bef48ab04ccb2e7a745a616f7b538ab7f64",
|
|
1321
|
-
"color.info.surface-active": "ae3e87f9597b0a64794006c45647c2732c56e1a9",
|
|
1322
|
-
"color.info.border-subtle": "1ffe5b7397c8c48e8d0fb6fd0eeb59285b28f98e",
|
|
1323
|
-
"color.info.border-default": "9fb559c8d69aafd6041b6adf27ee4b5150b23135",
|
|
1324
|
-
"color.info.border-strong": "206eff3e32f6af6d26335a280d850158b755e2ec",
|
|
1325
|
-
"color.info.text-subtle": "07dee568fa3099152d013b09cd5d402f65097ac1",
|
|
1326
|
-
"color.info.text-default": "21ae56444ff058938849b5f5c08d03bb67bddc87",
|
|
1327
|
-
"color.info.base-default": "feb210508bae532bf42216079e751fc65f4da3d5",
|
|
1328
|
-
"color.info.base-hover": "ecaef5c4585fc82252e08b16564edd49f9f062aa",
|
|
1329
|
-
"color.info.base-active": "cc66305f6468e696f3a6c7979562297260246e54",
|
|
1330
|
-
"color.info.base-contrast-subtle": "311fee45f4dc4c1da777e8466a7804fc01e1cba0",
|
|
1331
|
-
"color.info.base-contrast-default": "068e1de6e216e5867756c595768cc19c88a72fb3",
|
|
1332
|
-
"color.warning.background-default": "8a24ea3a30c6e03949d6987a73d9edbe19845a63",
|
|
1333
|
-
"color.warning.background-tinted": "886ac34f2b62bad18ff6d1db1d21b244de75d39a",
|
|
1334
|
-
"color.warning.surface-default": "b700b4367e9fa3911cb62b1fbaf4716e98a137f3",
|
|
1335
|
-
"color.warning.surface-tinted": "df6f221752893a5b07aec9a8bfe8daffc4f55701",
|
|
1336
|
-
"color.warning.surface-hover": "36c1d0b22d55a954f09c871597c5b3452758c814",
|
|
1337
|
-
"color.warning.surface-active": "48020179179256549802a6e6ec84c134a2311aad",
|
|
1338
|
-
"color.warning.border-subtle": "ae15a8dcba3c24264c7dcc3384c225bcdf3cedf3",
|
|
1339
|
-
"color.warning.border-default": "e9704a59f7b73f3d6ee23249f8060436bac2921b",
|
|
1340
|
-
"color.warning.border-strong": "83e16e373c2ddcb3265848d8ba2420c5fe7381eb",
|
|
1341
|
-
"color.warning.text-subtle": "7d85d91b3fbc7cb0749d7e928b305c74e62e69f0",
|
|
1342
|
-
"color.warning.text-default": "11f3f1d983db49b036aacb16dc5d3ca5e0143da0",
|
|
1343
|
-
"color.warning.base-default": "def95b13b807f2f8b6202875cf419d0bb044d8e4",
|
|
1344
|
-
"color.warning.base-hover": "c4ee486b084195feeb822eec2de63bfdec2652bb",
|
|
1345
|
-
"color.warning.base-active": "31de29f6538369494931e147a88cd941ebe77927",
|
|
1346
|
-
"color.warning.base-contrast-subtle": "efb708d66f25610b35df2fe9bd9088e80e31a0a3",
|
|
1347
|
-
"color.warning.base-contrast-default": "3d38f3079fb9fd155567ec24c7fde25f68c40f42",
|
|
1348
|
-
"color.focus.inner": "1ec8f76f658042889b1eb4b08f3ce9bca1b7e603",
|
|
1349
|
-
"color.focus.outer": "09e04f0bfff8fdc309db58a0131b5d07dae6b4f8",
|
|
1350
|
-
"border-width.default": "ac5b6181d17de3d25249c91674dce4fef8711216",
|
|
1351
|
-
"border-width.highlight": "dd40bb1cb729138762c0bfa29d26adb58b726354",
|
|
1352
|
-
"border-radius.sm": "7b2af5d22e01253d20184bf5c3f872a18d41a315",
|
|
1353
|
-
"border-radius.md": "76f37e1c3307e179fa0144249c3b801d1c23e748",
|
|
1354
|
-
"border-radius.lg": "ac79c81ad8072fd4377a13a6e856d494c693fcf3",
|
|
1355
|
-
"border-radius.xl": "678038f59e99a7b14ed9c23dbafb7a76894b3d21",
|
|
1356
|
-
"border-radius.default": "7b61c03456ebcf335bed7486c7897986b688765b",
|
|
1357
|
-
"border-radius.full": "402d1c89e9770719d5da3e2379344604f3021569",
|
|
1358
|
-
"size.0": "7f989a9833b657d9482f0c231fc6a8aafefcd0ed",
|
|
1359
|
-
"size.1": "3227b231723372e17e045c610e4c4ec456cd3f6f",
|
|
1360
|
-
"size.2": "afcdfd16d035bfc4d5840c5bdeff1ff6210192e2",
|
|
1361
|
-
"size.3": "8d4409fe30f5ffd90e980b8fab79ce987141e67e",
|
|
1362
|
-
"size.4": "94528eee8bff6fd6b4a109ac67f5b279a0698d24",
|
|
1363
|
-
"size.5": "4cd6241a4198b55fce56f72ff9d9bd1b814a5293",
|
|
1364
|
-
"size.6": "2484cad321e2f2a5cae897b839506c7d4c4b552b",
|
|
1365
|
-
"size.7": "1342b364107e009d6bf7fb445ee44d337a315d98",
|
|
1366
|
-
"size.8": "dcb2a6266145b71d3201263764d6b13fd62e1bbe",
|
|
1367
|
-
"size.9": "8205f95b5de47c52abb7a810861a0d8056fd44d8",
|
|
1368
|
-
"size.10": "0a995e8df1896b0b9dd842a8b399bbb19e5c38cd",
|
|
1369
|
-
"size.11": "8a1d028f6b4d99c991cacb92cc7ea990c5290804",
|
|
1370
|
-
"size.12": "a6dd72c06f3a1b417c03320ae1575564371e80c8",
|
|
1371
|
-
"size.13": "433e977e40df106235d4097cc2658a846d9b51a9",
|
|
1372
|
-
"size.14": "fb235853a6c9f4cd06f92522e3a31611b18432fc",
|
|
1373
|
-
"size.15": "6217f6879c17045b1c8abe1b23ff01c431538cc9",
|
|
1374
|
-
"size.18": "803716e7a1ab4f0ed08180713a5ddc53f5a80a13",
|
|
1375
|
-
"size.22": "f0e62cce260051ffae97ed9709e77fb22e2dac2e",
|
|
1376
|
-
"size.26": "a42e9a42d13ce2453de8005b58147b9a9b9b5dde",
|
|
1377
|
-
"size.30": "600d545445deae2077866ba3953a64000a123606",
|
|
1378
|
-
"opacity.disabled": "d94940d06b80e1cb6184ae12c5793a1ef95420ba"
|
|
1379
|
-
},
|
|
1380
|
-
"group": "Semantic"
|
|
1381
|
-
},
|
|
1382
|
-
{
|
|
1383
|
-
"id": "e8db1eb9cc7955a97a90cd91b3dc07707c531770",
|
|
1384
|
-
"name": "accent",
|
|
1385
|
-
"$figmaStyleReferences": {},
|
|
1386
|
-
"selectedTokenSets": {
|
|
1387
|
-
"semantic/modes/main-color/accent": "enabled"
|
|
1388
|
-
},
|
|
1389
|
-
"$figmaCollectionId": "VariableCollectionId:40350:32139",
|
|
1390
|
-
"$figmaModeId": "40350:0",
|
|
1391
|
-
"$figmaVariableReferences": {
|
|
1392
|
-
"color.main.background-default": "0a6ad35fe30454f287b7cf388e64315cc902bb4c",
|
|
1393
|
-
"color.main.background-tinted": "78bc727d050dcc5b0952f7901626fb199f2f87f4",
|
|
1394
|
-
"color.main.surface-default": "fe03e17768ce690beb199f7d45a6d364076c08b5",
|
|
1395
|
-
"color.main.surface-tinted": "a432815673549e151957bd5d49b78f7cb971d622",
|
|
1396
|
-
"color.main.surface-hover": "a56c3b3cfcc5112eb07a8d2ad7f9b93eddadf3e6",
|
|
1397
|
-
"color.main.surface-active": "2b1830d8d7a7a51be3bd9587ba260ce8756ff929",
|
|
1398
|
-
"color.main.border-subtle": "6f53b5326a5a79fb4f0c96dfd0109cf01d83c6d1",
|
|
1399
|
-
"color.main.border-default": "f1521b408dc6f67bfc0bfbbd10679666492165cd",
|
|
1400
|
-
"color.main.border-strong": "41a68e2fb9c867308fe5ad31183272298320da8f",
|
|
1401
|
-
"color.main.text-subtle": "62e360c36696f4983a8ed15bd547ea5702cb19f5",
|
|
1402
|
-
"color.main.text-default": "ef9660a13e35a55854e126d2a7c067143166b3ef",
|
|
1403
|
-
"color.main.base-default": "bc66dee872e0befa128a200c2885c31e0a22de5a",
|
|
1404
|
-
"color.main.base-hover": "bf676d0b25ddece71adfdbcf611ee6554c023449",
|
|
1405
|
-
"color.main.base-active": "193bbca2082ccf08241e1b1ff6154cc34d47c30d",
|
|
1406
|
-
"color.main.base-contrast-subtle": "feba2c59290c5f6c539e3b551142648c5e1fbd5c",
|
|
1407
|
-
"color.main.base-contrast-default": "97d860819aaede41c469d46328abdb5e6a5db5a6"
|
|
1408
|
-
},
|
|
1409
|
-
"group": "Main color"
|
|
1410
|
-
},
|
|
1411
|
-
{
|
|
1412
|
-
"id": "596501d7-2669-46cf-bce2-29327b877f8b",
|
|
1413
|
-
"name": "brand1",
|
|
1414
|
-
"$figmaStyleReferences": {},
|
|
1415
|
-
"selectedTokenSets": {
|
|
1416
|
-
"semantic/modes/support-color/brand1": "enabled"
|
|
1417
|
-
},
|
|
1418
|
-
"$figmaCollectionId": "VariableCollectionId:40350:32140",
|
|
1419
|
-
"$figmaModeId": "40350:1",
|
|
1420
|
-
"$figmaVariableReferences": {
|
|
1421
|
-
"color.support.background-default": "8a973afc42271bf411a442a85612816370e5c222",
|
|
1422
|
-
"color.support.background-tinted": "d7f84312d0bc8aab36708600932b26fd52ac098d",
|
|
1423
|
-
"color.support.surface-default": "509190192dd7c65028ed83cd6d2a108007ea500e",
|
|
1424
|
-
"color.support.surface-tinted": "362e2658e4c3c10ee8850cd3f305b64a622659c5",
|
|
1425
|
-
"color.support.surface-hover": "30db7f31ed9593b343b0ebe2cd532d79d768c579",
|
|
1426
|
-
"color.support.surface-active": "9bb2ea18b99220ed41ff3419f05bbcac196c866d",
|
|
1427
|
-
"color.support.border-subtle": "4d05223b2e2336d45f3478ad6e5a5a17566d820b",
|
|
1428
|
-
"color.support.border-default": "4239e3243c8b63e7ad45a139c65b5dcb0e442809",
|
|
1429
|
-
"color.support.border-strong": "09478d88dda44e9e7a5b2b82399bb1e7246e5e45",
|
|
1430
|
-
"color.support.text-subtle": "658e78e96fcdeea5ece7f0a9c9cf03d1422cbe5e",
|
|
1431
|
-
"color.support.text-default": "763bf9318e6067e0296bf01b0967a6e60833b16b",
|
|
1432
|
-
"color.support.base-default": "587249058cf4e129046d70fe54026a1d14ccc2d1",
|
|
1433
|
-
"color.support.base-hover": "7adfb2935e085bb8ceee2a8233004574ce8fcfc8",
|
|
1434
|
-
"color.support.base-active": "4acdc752cc05ffbc3b2f6773f5a2acecc8f25852",
|
|
1435
|
-
"color.support.base-contrast-subtle": "7dd2e5cabe00e4ae4aeaafcb120addb5c8453d82",
|
|
1436
|
-
"color.support.base-contrast-default": "3da37e6c20293ac738dfb654094df59eb16475ae"
|
|
1437
|
-
},
|
|
1438
|
-
"group": "Support color"
|
|
1439
|
-
},
|
|
1440
|
-
{
|
|
1441
|
-
"id": "8e1913e5-92aa-40ca-917c-9f458ec6d31d",
|
|
1442
|
-
"name": "brand2",
|
|
1443
|
-
"$figmaStyleReferences": {},
|
|
1444
|
-
"selectedTokenSets": {
|
|
1445
|
-
"semantic/modes/support-color/brand2": "enabled"
|
|
1446
|
-
},
|
|
1447
|
-
"$figmaCollectionId": "VariableCollectionId:40350:32140",
|
|
1448
|
-
"$figmaModeId": "40350:2",
|
|
1449
|
-
"$figmaVariableReferences": {
|
|
1450
|
-
"color.support.background-default": "8a973afc42271bf411a442a85612816370e5c222",
|
|
1451
|
-
"color.support.background-tinted": "d7f84312d0bc8aab36708600932b26fd52ac098d",
|
|
1452
|
-
"color.support.surface-default": "509190192dd7c65028ed83cd6d2a108007ea500e",
|
|
1453
|
-
"color.support.surface-tinted": "362e2658e4c3c10ee8850cd3f305b64a622659c5",
|
|
1454
|
-
"color.support.surface-hover": "30db7f31ed9593b343b0ebe2cd532d79d768c579",
|
|
1455
|
-
"color.support.surface-active": "9bb2ea18b99220ed41ff3419f05bbcac196c866d",
|
|
1456
|
-
"color.support.border-subtle": "4d05223b2e2336d45f3478ad6e5a5a17566d820b",
|
|
1457
|
-
"color.support.border-default": "4239e3243c8b63e7ad45a139c65b5dcb0e442809",
|
|
1458
|
-
"color.support.border-strong": "09478d88dda44e9e7a5b2b82399bb1e7246e5e45",
|
|
1459
|
-
"color.support.text-subtle": "658e78e96fcdeea5ece7f0a9c9cf03d1422cbe5e",
|
|
1460
|
-
"color.support.text-default": "763bf9318e6067e0296bf01b0967a6e60833b16b",
|
|
1461
|
-
"color.support.base-default": "587249058cf4e129046d70fe54026a1d14ccc2d1",
|
|
1462
|
-
"color.support.base-hover": "7adfb2935e085bb8ceee2a8233004574ce8fcfc8",
|
|
1463
|
-
"color.support.base-active": "4acdc752cc05ffbc3b2f6773f5a2acecc8f25852",
|
|
1464
|
-
"color.support.base-contrast-subtle": "7dd2e5cabe00e4ae4aeaafcb120addb5c8453d82",
|
|
1465
|
-
"color.support.base-contrast-default": "3da37e6c20293ac738dfb654094df59eb16475ae"
|
|
1466
|
-
},
|
|
1467
|
-
"group": "Support color"
|
|
1468
|
-
},
|
|
1469
|
-
{
|
|
1470
|
-
"id": "ef789a3b-a857-4c48-ba89-23d8560ccd73",
|
|
1471
|
-
"name": "brand3",
|
|
1472
|
-
"$figmaStyleReferences": {},
|
|
1473
|
-
"selectedTokenSets": {
|
|
1474
|
-
"semantic/modes/support-color/brand3": "enabled"
|
|
1475
|
-
},
|
|
1476
|
-
"$figmaCollectionId": "VariableCollectionId:40350:32140",
|
|
1477
|
-
"$figmaModeId": "40350:3",
|
|
1478
|
-
"$figmaVariableReferences": {
|
|
1479
|
-
"color.support.background-default": "8a973afc42271bf411a442a85612816370e5c222",
|
|
1480
|
-
"color.support.background-tinted": "d7f84312d0bc8aab36708600932b26fd52ac098d",
|
|
1481
|
-
"color.support.surface-default": "509190192dd7c65028ed83cd6d2a108007ea500e",
|
|
1482
|
-
"color.support.surface-tinted": "362e2658e4c3c10ee8850cd3f305b64a622659c5",
|
|
1483
|
-
"color.support.surface-hover": "30db7f31ed9593b343b0ebe2cd532d79d768c579",
|
|
1484
|
-
"color.support.surface-active": "9bb2ea18b99220ed41ff3419f05bbcac196c866d",
|
|
1485
|
-
"color.support.border-subtle": "4d05223b2e2336d45f3478ad6e5a5a17566d820b",
|
|
1486
|
-
"color.support.border-default": "4239e3243c8b63e7ad45a139c65b5dcb0e442809",
|
|
1487
|
-
"color.support.border-strong": "09478d88dda44e9e7a5b2b82399bb1e7246e5e45",
|
|
1488
|
-
"color.support.text-subtle": "658e78e96fcdeea5ece7f0a9c9cf03d1422cbe5e",
|
|
1489
|
-
"color.support.text-default": "763bf9318e6067e0296bf01b0967a6e60833b16b",
|
|
1490
|
-
"color.support.base-default": "587249058cf4e129046d70fe54026a1d14ccc2d1",
|
|
1491
|
-
"color.support.base-hover": "7adfb2935e085bb8ceee2a8233004574ce8fcfc8",
|
|
1492
|
-
"color.support.base-active": "4acdc752cc05ffbc3b2f6773f5a2acecc8f25852",
|
|
1493
|
-
"color.support.base-contrast-subtle": "7dd2e5cabe00e4ae4aeaafcb120addb5c8453d82",
|
|
1494
|
-
"color.support.base-contrast-default": "3da37e6c20293ac738dfb654094df59eb16475ae"
|
|
1495
|
-
},
|
|
1496
|
-
"group": "Support color"
|
|
1497
|
-
}
|
|
1498
|
-
]
|