@likec4/styles 1.35.0 → 1.36.1

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/preset.mjs CHANGED
@@ -1,4 +1,4 @@
1
- import { definePreset, defineSlotRecipe, defineRecipe, defineSemanticTokens, defineTokens, defineLayerStyles, defineTextStyles, defineUtility } from '@pandacss/dev';
1
+ import { definePreset, defineSlotRecipe, defineRecipe, defineSemanticTokens, defineTokens, defineLayerStyles, defineTextStyles } from '@pandacss/dev';
2
2
 
3
3
  const grayDark = {
4
4
  gray1: "#111111",
@@ -3948,8 +3948,6 @@ function createPreset(options) {
3948
3948
  });
3949
3949
  }
3950
3950
  const root = ".likec4-root";
3951
- const rootNotReduced = `${root}:not([data-likec4-reduced-graphics])`;
3952
- const nodeOrEdge = `:where(.react-flow__node, .react-flow__edge, .likec4-edge-label-container)`;
3953
3951
  const radixColors = [
3954
3952
  "yellow",
3955
3953
  "orange",
@@ -3969,2418 +3967,784 @@ const radixColors = [
3969
3967
  "lime"
3970
3968
  ];
3971
3969
  const iconSize = "--likec4-icon-size";
3972
- const themeColors = [
3973
- "amber",
3974
- "blue",
3975
- "gray",
3976
- "slate",
3977
- "green",
3978
- "indigo",
3979
- "muted",
3980
- "primary",
3981
- "red",
3982
- "secondary",
3983
- "sky"
3984
- ];
3985
- const compoundColors = [
3986
- "amber.1",
3987
- "amber.2",
3988
- "amber.3",
3989
- "amber.4",
3990
- "amber.5",
3991
- "blue.1",
3992
- "blue.2",
3993
- "blue.3",
3994
- "blue.4",
3995
- "blue.5",
3996
- "gray.1",
3997
- "gray.2",
3998
- "gray.3",
3999
- "gray.4",
4000
- "gray.5",
4001
- "slate.1",
4002
- "slate.2",
4003
- "slate.3",
4004
- "slate.4",
4005
- "slate.5",
4006
- "green.1",
4007
- "green.2",
4008
- "green.3",
4009
- "green.4",
4010
- "green.5",
4011
- "indigo.1",
4012
- "indigo.2",
4013
- "indigo.3",
4014
- "indigo.4",
4015
- "indigo.5",
4016
- "muted.1",
4017
- "muted.2",
4018
- "muted.3",
4019
- "muted.4",
4020
- "muted.5",
4021
- "primary.1",
4022
- "primary.2",
4023
- "primary.3",
4024
- "primary.4",
4025
- "primary.5",
4026
- "red.1",
4027
- "red.2",
4028
- "red.3",
4029
- "red.4",
4030
- "red.5",
4031
- "secondary.1",
4032
- "secondary.2",
4033
- "secondary.3",
4034
- "secondary.4",
4035
- "secondary.5",
4036
- "sky.1",
4037
- "sky.2",
4038
- "sky.3",
4039
- "sky.4",
4040
- "sky.5"
4041
- ];
4042
- const conditions$1 = {
4043
- shapeSizeXs: ":where([data-likec4-shape-size='xs']) &",
4044
- shapeSizeSm: ":where([data-likec4-shape-size='sm']) &",
4045
- shapeSizeMd: ":where([data-likec4-shape-size='md']) &",
4046
- shapeSizeLg: ":where([data-likec4-shape-size='lg']) &",
4047
- shapeSizeXl: ":where([data-likec4-shape-size='xl']) &",
4048
- shapeRectangle: ":where([data-likec4-shape='rectangle']) &",
4049
- shapePerson: ":where([data-likec4-shape='person']) &",
4050
- shapeBrowser: ":where([data-likec4-shape='browser']) &",
4051
- shapeMobile: ":where([data-likec4-shape='mobile']) &",
4052
- shapeCylinder: ":where([data-likec4-shape='cylinder']) &",
4053
- shapeStorage: ":where([data-likec4-shape='storage']) &",
4054
- shapeQueue: ":where([data-likec4-shape='queue']) &"
4055
- };
4056
- const globalCss = {
4057
- ":where([data-likec4-text-size='xs'])": {
4058
- "--likec4-text-size": "{fontSizes.likec4.xs}"
4059
- },
4060
- ":where([data-likec4-text-size='sm'])": {
4061
- "--likec4-text-size": "{fontSizes.likec4.sm}"
4062
- },
4063
- ":where([data-likec4-text-size='md'])": {
4064
- "--likec4-text-size": "{fontSizes.likec4.md}"
4065
- },
4066
- ":where([data-likec4-text-size='lg'])": {
4067
- "--likec4-text-size": "{fontSizes.likec4.lg}"
4068
- },
4069
- ":where([data-likec4-text-size='xl'])": {
4070
- "--likec4-text-size": "{fontSizes.likec4.xl}"
4071
- },
4072
- ":where([data-likec4-spacing='xs'])": {
4073
- "--likec4-spacing": "{spacing.likec4.xs}"
4074
- },
4075
- ":where([data-likec4-spacing='sm'])": {
4076
- "--likec4-spacing": "{spacing.likec4.sm}"
4077
- },
4078
- ":where([data-likec4-spacing='md'])": {
4079
- "--likec4-spacing": "{spacing.likec4.md}"
4080
- },
4081
- ":where([data-likec4-spacing='lg'])": {
4082
- "--likec4-spacing": "{spacing.likec4.lg}"
4083
- },
4084
- ":where([data-likec4-spacing='xl'])": {
4085
- "--likec4-spacing": "{spacing.likec4.xl}"
4086
- }
4087
- };
4088
- const theme$1 = {
4089
- breakpoints: {
4090
- xs: "36em",
4091
- sm: "48em",
4092
- md: "62em",
4093
- lg: "75em",
4094
- xl: "88em"
4095
- },
4096
- tokens: {
4097
- spacing: {
3970
+ const breakpoints = {
3971
+ xs: "36em",
3972
+ sm: "48em",
3973
+ md: "62em",
3974
+ lg: "75em",
3975
+ xl: "88em"
3976
+ };
3977
+ const tokens$1 = {
3978
+ spacing: {
3979
+ likec4: {
4098
3980
  xs: {
4099
- value: "calc(0.625rem * var(--mantine-scale))"
3981
+ description: "LikeC4 Diagram Spacing: xs",
3982
+ value: "8px"
4100
3983
  },
4101
3984
  sm: {
4102
- value: "calc(0.75rem * var(--mantine-scale))"
3985
+ description: "LikeC4 Diagram Spacing: sm",
3986
+ value: "10px"
4103
3987
  },
4104
3988
  md: {
4105
- value: "calc(1rem * var(--mantine-scale))"
3989
+ description: "LikeC4 Diagram Spacing: md",
3990
+ value: "16px"
4106
3991
  },
4107
3992
  lg: {
4108
- value: "calc(1.25rem * var(--mantine-scale))"
3993
+ description: "LikeC4 Diagram Spacing: lg",
3994
+ value: "24px"
4109
3995
  },
4110
3996
  xl: {
4111
- value: "calc(2rem * var(--mantine-scale))"
4112
- },
4113
- likec4: {
4114
- xs: {
4115
- description: "LikeC4 style spacing: xs",
4116
- value: "8px"
4117
- },
4118
- sm: {
4119
- description: "LikeC4 style spacing: sm",
4120
- value: "10px"
4121
- },
4122
- md: {
4123
- description: "LikeC4 style spacing: md",
4124
- value: "16px"
4125
- },
4126
- lg: {
4127
- description: "LikeC4 style spacing: lg",
4128
- value: "24px"
4129
- },
4130
- xl: {
4131
- description: "LikeC4 style spacing: xl",
4132
- value: "32px"
4133
- }
3997
+ description: "LikeC4 Diagram Spacing: xl",
3998
+ value: "32px"
4134
3999
  }
4000
+ }
4001
+ },
4002
+ fontSizes: {
4003
+ xxs: {
4004
+ value: "0.625rem"
4135
4005
  },
4136
- radii: {
4137
- xs: {
4138
- value: "var(--mantine-radius-xs)"
4139
- },
4140
- sm: {
4141
- value: "var(--mantine-radius-sm)"
4142
- },
4143
- md: {
4144
- value: "var(--mantine-radius-md)"
4145
- },
4146
- lg: {
4147
- value: "var(--mantine-radius-lg)"
4148
- },
4149
- xl: {
4150
- value: "var(--mantine-radius-xl)"
4151
- }
4006
+ xs: {
4007
+ value: "calc(0.75rem * var(--mantine-scale))"
4152
4008
  },
4153
- fontSizes: {
4154
- xxs: {
4155
- value: "0.625rem"
4156
- },
4157
- xs: {
4158
- value: "calc(0.75rem * var(--mantine-scale))"
4159
- },
4160
- sm: {
4161
- value: "calc(0.875rem * var(--mantine-scale))"
4162
- },
4163
- md: {
4164
- value: "calc(1rem * var(--mantine-scale))"
4165
- },
4166
- lg: {
4167
- value: "calc(1.125rem * var(--mantine-scale))"
4168
- },
4169
- xl: {
4170
- value: "calc(1.25rem * var(--mantine-scale))"
4171
- },
4172
- likec4: {
4173
- xs: {
4174
- description: "LikeC4 style text size: xs",
4175
- value: "0.833rem"
4176
- },
4177
- sm: {
4178
- description: "LikeC4 style text size: sm",
4179
- value: "1.00rem"
4180
- },
4181
- md: {
4182
- description: "LikeC4 style text size: md",
4183
- value: "1.20rem"
4184
- },
4185
- lg: {
4186
- description: "LikeC4 style text size: lg",
4187
- value: "1.44rem"
4188
- },
4189
- xl: {
4190
- description: "LikeC4 style text size: xl",
4191
- value: "1.73rem"
4192
- }
4193
- }
4009
+ sm: {
4010
+ value: "calc(0.875rem * var(--mantine-scale))"
4011
+ },
4012
+ md: {
4013
+ value: "calc(1rem * var(--mantine-scale))"
4194
4014
  },
4195
- lineHeights: {
4015
+ lg: {
4016
+ value: "calc(1.125rem * var(--mantine-scale))"
4017
+ },
4018
+ xl: {
4019
+ value: "calc(1.25rem * var(--mantine-scale))"
4020
+ },
4021
+ likec4: {
4196
4022
  xs: {
4197
- value: "1.4"
4023
+ description: "LikeC4 Diagram Text Size: xs",
4024
+ value: "0.833rem"
4198
4025
  },
4199
4026
  sm: {
4200
- value: "1.45"
4027
+ description: "LikeC4 Diagram Text Size: sm",
4028
+ value: "1.00rem"
4201
4029
  },
4202
4030
  md: {
4203
- value: "1.55"
4031
+ description: "LikeC4 Diagram Text Size: md",
4032
+ value: "1.20rem"
4204
4033
  },
4205
4034
  lg: {
4206
- value: "1.6"
4035
+ description: "LikeC4 Diagram Text Size: lg",
4036
+ value: "1.44rem"
4207
4037
  },
4208
4038
  xl: {
4209
- value: "1.65"
4039
+ description: "LikeC4 Diagram Text Size: xl",
4040
+ value: "1.73rem"
4210
4041
  }
4042
+ }
4043
+ },
4044
+ lineHeights: {
4045
+ xs: {
4046
+ value: "1.4"
4211
4047
  },
4212
- colors: {
4213
- mantine: {
4214
- colors: {
4215
- primary: {
4216
- DEFAULT: {
4217
- description: "Mantine color primaryColors",
4218
- value: "var(--mantine-primary-color-6)"
4219
- },
4220
- filled: {
4221
- description: "Mantine color primaryColors filled",
4222
- value: "var(--mantine-primary-color-filled)"
4223
- },
4224
- filledHover: {
4225
- description: "Mantine color primaryColors filled hover",
4226
- value: "var(--mantine-primary-color-filled-hover)"
4227
- },
4228
- light: {
4229
- description: "Mantine color primaryColors light",
4230
- value: "var(--mantine-primary-color-light)"
4231
- },
4232
- lightHover: {
4233
- description: "Mantine color primaryColors light hover",
4234
- value: "var(--mantine-primary-color-light-hover)"
4235
- },
4236
- lightColor: {
4237
- description: "Mantine color primaryColors light color",
4238
- value: "var(--mantine-primary-color-light-color)"
4239
- },
4240
- outline: {
4241
- description: "Mantine color primaryColors outline",
4242
- value: "var(--mantine-primary-color-outline)"
4243
- },
4244
- outlineHover: {
4245
- description: "Mantine color primaryColors outline hover",
4246
- value: "var(--mantine-primary-color-outline-hover)"
4247
- }
4248
- },
4249
- "primary[0]": {
4250
- description: "Mantine color primaryColors.0",
4251
- value: "var(--mantine-primary-color-0)"
4252
- },
4253
- "primary[1]": {
4254
- description: "Mantine color primaryColors.1",
4255
- value: "var(--mantine-primary-color-1)"
4256
- },
4257
- "primary[2]": {
4258
- description: "Mantine color primaryColors.2",
4259
- value: "var(--mantine-primary-color-2)"
4260
- },
4261
- "primary[3]": {
4262
- description: "Mantine color primaryColors.3",
4263
- value: "var(--mantine-primary-color-3)"
4264
- },
4265
- "primary[4]": {
4266
- description: "Mantine color primaryColors.4",
4267
- value: "var(--mantine-primary-color-4)"
4048
+ sm: {
4049
+ value: "1.45"
4050
+ },
4051
+ md: {
4052
+ value: "1.55"
4053
+ },
4054
+ lg: {
4055
+ value: "1.6"
4056
+ },
4057
+ xl: {
4058
+ value: "1.65"
4059
+ }
4060
+ },
4061
+ colors: {
4062
+ mantine: {
4063
+ colors: {
4064
+ primary: {
4065
+ DEFAULT: {
4066
+ description: "Mantine color primaryColors",
4067
+ value: "var(--mantine-primary-color-6)"
4268
4068
  },
4269
- "primary[5]": {
4270
- description: "Mantine color primaryColors.5",
4271
- value: "var(--mantine-primary-color-5)"
4069
+ filled: {
4070
+ description: "Mantine color primaryColors filled",
4071
+ value: "var(--mantine-primary-color-filled)"
4272
4072
  },
4273
- "primary[6]": {
4274
- description: "Mantine color primaryColors.6",
4275
- value: "var(--mantine-primary-color-6)"
4073
+ filledHover: {
4074
+ description: "Mantine color primaryColors filled hover",
4075
+ value: "var(--mantine-primary-color-filled-hover)"
4276
4076
  },
4277
- "primary[7]": {
4278
- description: "Mantine color primaryColors.7",
4279
- value: "var(--mantine-primary-color-7)"
4077
+ light: {
4078
+ description: "Mantine color primaryColors light",
4079
+ value: "var(--mantine-primary-color-light)"
4280
4080
  },
4281
- "primary[8]": {
4282
- description: "Mantine color primaryColors.8",
4283
- value: "var(--mantine-primary-color-8)"
4081
+ lightHover: {
4082
+ description: "Mantine color primaryColors light hover",
4083
+ value: "var(--mantine-primary-color-light-hover)"
4284
4084
  },
4285
- "primary[9]": {
4286
- description: "Mantine color primaryColors.9",
4287
- value: "var(--mantine-primary-color-9)"
4085
+ lightColor: {
4086
+ description: "Mantine color primaryColors light color",
4087
+ value: "var(--mantine-primary-color-light-color)"
4288
4088
  },
4289
- white: {
4290
- value: "var(--mantine-color-white)"
4089
+ outline: {
4090
+ description: "Mantine color primaryColors outline",
4091
+ value: "var(--mantine-primary-color-outline)"
4291
4092
  },
4292
- text: {
4293
- value: "var(--mantine-color-text)"
4093
+ outlineHover: {
4094
+ description: "Mantine color primaryColors outline hover",
4095
+ value: "var(--mantine-primary-color-outline-hover)"
4096
+ }
4097
+ },
4098
+ "primary[0]": {
4099
+ description: "Mantine color primaryColors.0",
4100
+ value: "var(--mantine-primary-color-0)"
4101
+ },
4102
+ "primary[1]": {
4103
+ description: "Mantine color primaryColors.1",
4104
+ value: "var(--mantine-primary-color-1)"
4105
+ },
4106
+ "primary[2]": {
4107
+ description: "Mantine color primaryColors.2",
4108
+ value: "var(--mantine-primary-color-2)"
4109
+ },
4110
+ "primary[3]": {
4111
+ description: "Mantine color primaryColors.3",
4112
+ value: "var(--mantine-primary-color-3)"
4113
+ },
4114
+ "primary[4]": {
4115
+ description: "Mantine color primaryColors.4",
4116
+ value: "var(--mantine-primary-color-4)"
4117
+ },
4118
+ "primary[5]": {
4119
+ description: "Mantine color primaryColors.5",
4120
+ value: "var(--mantine-primary-color-5)"
4121
+ },
4122
+ "primary[6]": {
4123
+ description: "Mantine color primaryColors.6",
4124
+ value: "var(--mantine-primary-color-6)"
4125
+ },
4126
+ "primary[7]": {
4127
+ description: "Mantine color primaryColors.7",
4128
+ value: "var(--mantine-primary-color-7)"
4129
+ },
4130
+ "primary[8]": {
4131
+ description: "Mantine color primaryColors.8",
4132
+ value: "var(--mantine-primary-color-8)"
4133
+ },
4134
+ "primary[9]": {
4135
+ description: "Mantine color primaryColors.9",
4136
+ value: "var(--mantine-primary-color-9)"
4137
+ },
4138
+ white: {
4139
+ value: "var(--mantine-color-white)"
4140
+ },
4141
+ text: {
4142
+ value: "var(--mantine-color-text)"
4143
+ },
4144
+ body: {
4145
+ value: "var(--mantine-color-body)"
4146
+ },
4147
+ dimmed: {
4148
+ value: "var(--mantine-color-dimmed)"
4149
+ },
4150
+ defaultBorder: {
4151
+ value: "var(--mantine-color-default-border)"
4152
+ },
4153
+ defaultColor: {
4154
+ value: "var(--mantine-color-default-color)"
4155
+ },
4156
+ defaultHover: {
4157
+ value: "var(--mantine-color-default-hover)"
4158
+ },
4159
+ default: {
4160
+ value: "var(--mantine-color-default)"
4161
+ },
4162
+ error: {
4163
+ value: "var(--mantine-color-error)"
4164
+ },
4165
+ placeholder: {
4166
+ value: "var(--mantine-color-placeholder)"
4167
+ },
4168
+ gray: {
4169
+ DEFAULT: {
4170
+ description: "Mantine color gray",
4171
+ value: "var(--mantine-color-gray-6)"
4294
4172
  },
4295
- body: {
4296
- value: "var(--mantine-color-body)"
4173
+ filled: {
4174
+ description: "Mantine color gray filled",
4175
+ value: "var(--mantine-color-gray-filled)"
4297
4176
  },
4298
- dimmed: {
4299
- value: "var(--mantine-color-dimmed)"
4177
+ filledHover: {
4178
+ description: "Mantine color gray filled hover",
4179
+ value: "var(--mantine-color-gray-filled-hover)"
4300
4180
  },
4301
- defaultBorder: {
4302
- value: "var(--mantine-color-default-border)"
4181
+ light: {
4182
+ description: "Mantine color gray light",
4183
+ value: "var(--mantine-color-gray-light)"
4303
4184
  },
4304
- defaultColor: {
4305
- value: "var(--mantine-color-default-color)"
4185
+ lightHover: {
4186
+ description: "Mantine color gray light hover",
4187
+ value: "var(--mantine-color-gray-light-hover)"
4306
4188
  },
4307
- defaultHover: {
4308
- value: "var(--mantine-color-default-hover)"
4189
+ lightColor: {
4190
+ description: "Mantine color gray light color",
4191
+ value: "var(--mantine-color-gray-light-color)"
4309
4192
  },
4310
- default: {
4311
- value: "var(--mantine-color-default)"
4193
+ outline: {
4194
+ description: "Mantine color gray outline",
4195
+ value: "var(--mantine-color-gray-outline)"
4312
4196
  },
4313
- error: {
4314
- value: "var(--mantine-color-error)"
4197
+ outlineHover: {
4198
+ description: "Mantine color gray outline hover",
4199
+ value: "var(--mantine-color-gray-outline-hover)"
4200
+ }
4201
+ },
4202
+ "gray[0]": {
4203
+ description: "Mantine color gray.0",
4204
+ value: "var(--mantine-color-gray-0)"
4205
+ },
4206
+ "gray[1]": {
4207
+ description: "Mantine color gray.1",
4208
+ value: "var(--mantine-color-gray-1)"
4209
+ },
4210
+ "gray[2]": {
4211
+ description: "Mantine color gray.2",
4212
+ value: "var(--mantine-color-gray-2)"
4213
+ },
4214
+ "gray[3]": {
4215
+ description: "Mantine color gray.3",
4216
+ value: "var(--mantine-color-gray-3)"
4217
+ },
4218
+ "gray[4]": {
4219
+ description: "Mantine color gray.4",
4220
+ value: "var(--mantine-color-gray-4)"
4221
+ },
4222
+ "gray[5]": {
4223
+ description: "Mantine color gray.5",
4224
+ value: "var(--mantine-color-gray-5)"
4225
+ },
4226
+ "gray[6]": {
4227
+ description: "Mantine color gray.6",
4228
+ value: "var(--mantine-color-gray-6)"
4229
+ },
4230
+ "gray[7]": {
4231
+ description: "Mantine color gray.7",
4232
+ value: "var(--mantine-color-gray-7)"
4233
+ },
4234
+ "gray[8]": {
4235
+ description: "Mantine color gray.8",
4236
+ value: "var(--mantine-color-gray-8)"
4237
+ },
4238
+ "gray[9]": {
4239
+ description: "Mantine color gray.9",
4240
+ value: "var(--mantine-color-gray-9)"
4241
+ },
4242
+ dark: {
4243
+ DEFAULT: {
4244
+ description: "Mantine color dark",
4245
+ value: "var(--mantine-color-dark-6)"
4315
4246
  },
4316
- placeholder: {
4317
- value: "var(--mantine-color-placeholder)"
4247
+ filled: {
4248
+ description: "Mantine color dark filled",
4249
+ value: "var(--mantine-color-dark-filled)"
4318
4250
  },
4319
- gray: {
4320
- DEFAULT: {
4321
- description: "Mantine color gray",
4322
- value: "var(--mantine-color-gray-6)"
4323
- },
4324
- filled: {
4325
- description: "Mantine color gray filled",
4326
- value: "var(--mantine-color-gray-filled)"
4327
- },
4328
- filledHover: {
4329
- description: "Mantine color gray filled hover",
4330
- value: "var(--mantine-color-gray-filled-hover)"
4331
- },
4332
- light: {
4333
- description: "Mantine color gray light",
4334
- value: "var(--mantine-color-gray-light)"
4335
- },
4336
- lightHover: {
4337
- description: "Mantine color gray light hover",
4338
- value: "var(--mantine-color-gray-light-hover)"
4339
- },
4340
- lightColor: {
4341
- description: "Mantine color gray light color",
4342
- value: "var(--mantine-color-gray-light-color)"
4343
- },
4344
- outline: {
4345
- description: "Mantine color gray outline",
4346
- value: "var(--mantine-color-gray-outline)"
4347
- },
4348
- outlineHover: {
4349
- description: "Mantine color gray outline hover",
4350
- value: "var(--mantine-color-gray-outline-hover)"
4351
- }
4251
+ filledHover: {
4252
+ description: "Mantine color dark filled hover",
4253
+ value: "var(--mantine-color-dark-filled-hover)"
4352
4254
  },
4353
- "gray[0]": {
4354
- description: "Mantine color gray.0",
4355
- value: "var(--mantine-color-gray-0)"
4255
+ light: {
4256
+ description: "Mantine color dark light",
4257
+ value: "var(--mantine-color-dark-light)"
4356
4258
  },
4357
- "gray[1]": {
4358
- description: "Mantine color gray.1",
4359
- value: "var(--mantine-color-gray-1)"
4259
+ lightHover: {
4260
+ description: "Mantine color dark light hover",
4261
+ value: "var(--mantine-color-dark-light-hover)"
4360
4262
  },
4361
- "gray[2]": {
4362
- description: "Mantine color gray.2",
4363
- value: "var(--mantine-color-gray-2)"
4263
+ lightColor: {
4264
+ description: "Mantine color dark light color",
4265
+ value: "var(--mantine-color-dark-light-color)"
4364
4266
  },
4365
- "gray[3]": {
4366
- description: "Mantine color gray.3",
4367
- value: "var(--mantine-color-gray-3)"
4267
+ outline: {
4268
+ description: "Mantine color dark outline",
4269
+ value: "var(--mantine-color-dark-outline)"
4368
4270
  },
4369
- "gray[4]": {
4370
- description: "Mantine color gray.4",
4371
- value: "var(--mantine-color-gray-4)"
4271
+ outlineHover: {
4272
+ description: "Mantine color dark outline hover",
4273
+ value: "var(--mantine-color-dark-outline-hover)"
4274
+ }
4275
+ },
4276
+ "dark[0]": {
4277
+ description: "Mantine color dark.0",
4278
+ value: "var(--mantine-color-dark-0)"
4279
+ },
4280
+ "dark[1]": {
4281
+ description: "Mantine color dark.1",
4282
+ value: "var(--mantine-color-dark-1)"
4283
+ },
4284
+ "dark[2]": {
4285
+ description: "Mantine color dark.2",
4286
+ value: "var(--mantine-color-dark-2)"
4287
+ },
4288
+ "dark[3]": {
4289
+ description: "Mantine color dark.3",
4290
+ value: "var(--mantine-color-dark-3)"
4291
+ },
4292
+ "dark[4]": {
4293
+ description: "Mantine color dark.4",
4294
+ value: "var(--mantine-color-dark-4)"
4295
+ },
4296
+ "dark[5]": {
4297
+ description: "Mantine color dark.5",
4298
+ value: "var(--mantine-color-dark-5)"
4299
+ },
4300
+ "dark[6]": {
4301
+ description: "Mantine color dark.6",
4302
+ value: "var(--mantine-color-dark-6)"
4303
+ },
4304
+ "dark[7]": {
4305
+ description: "Mantine color dark.7",
4306
+ value: "var(--mantine-color-dark-7)"
4307
+ },
4308
+ "dark[8]": {
4309
+ description: "Mantine color dark.8",
4310
+ value: "var(--mantine-color-dark-8)"
4311
+ },
4312
+ "dark[9]": {
4313
+ description: "Mantine color dark.9",
4314
+ value: "var(--mantine-color-dark-9)"
4315
+ },
4316
+ orange: {
4317
+ DEFAULT: {
4318
+ description: "Mantine color orange",
4319
+ value: "var(--mantine-color-orange-6)"
4372
4320
  },
4373
- "gray[5]": {
4374
- description: "Mantine color gray.5",
4375
- value: "var(--mantine-color-gray-5)"
4321
+ filled: {
4322
+ description: "Mantine color orange filled",
4323
+ value: "var(--mantine-color-orange-filled)"
4376
4324
  },
4377
- "gray[6]": {
4378
- description: "Mantine color gray.6",
4379
- value: "var(--mantine-color-gray-6)"
4325
+ filledHover: {
4326
+ description: "Mantine color orange filled hover",
4327
+ value: "var(--mantine-color-orange-filled-hover)"
4380
4328
  },
4381
- "gray[7]": {
4382
- description: "Mantine color gray.7",
4383
- value: "var(--mantine-color-gray-7)"
4329
+ light: {
4330
+ description: "Mantine color orange light",
4331
+ value: "var(--mantine-color-orange-light)"
4384
4332
  },
4385
- "gray[8]": {
4386
- description: "Mantine color gray.8",
4387
- value: "var(--mantine-color-gray-8)"
4333
+ lightHover: {
4334
+ description: "Mantine color orange light hover",
4335
+ value: "var(--mantine-color-orange-light-hover)"
4388
4336
  },
4389
- "gray[9]": {
4390
- description: "Mantine color gray.9",
4391
- value: "var(--mantine-color-gray-9)"
4337
+ lightColor: {
4338
+ description: "Mantine color orange light color",
4339
+ value: "var(--mantine-color-orange-light-color)"
4392
4340
  },
4393
- dark: {
4394
- DEFAULT: {
4395
- description: "Mantine color dark",
4396
- value: "var(--mantine-color-dark-6)"
4397
- },
4398
- filled: {
4399
- description: "Mantine color dark filled",
4400
- value: "var(--mantine-color-dark-filled)"
4401
- },
4402
- filledHover: {
4403
- description: "Mantine color dark filled hover",
4404
- value: "var(--mantine-color-dark-filled-hover)"
4405
- },
4406
- light: {
4407
- description: "Mantine color dark light",
4408
- value: "var(--mantine-color-dark-light)"
4409
- },
4410
- lightHover: {
4411
- description: "Mantine color dark light hover",
4412
- value: "var(--mantine-color-dark-light-hover)"
4413
- },
4414
- lightColor: {
4415
- description: "Mantine color dark light color",
4416
- value: "var(--mantine-color-dark-light-color)"
4417
- },
4418
- outline: {
4419
- description: "Mantine color dark outline",
4420
- value: "var(--mantine-color-dark-outline)"
4421
- },
4422
- outlineHover: {
4423
- description: "Mantine color dark outline hover",
4424
- value: "var(--mantine-color-dark-outline-hover)"
4425
- }
4341
+ outline: {
4342
+ description: "Mantine color orange outline",
4343
+ value: "var(--mantine-color-orange-outline)"
4426
4344
  },
4427
- "dark[0]": {
4428
- description: "Mantine color dark.0",
4429
- value: "var(--mantine-color-dark-0)"
4345
+ outlineHover: {
4346
+ description: "Mantine color orange outline hover",
4347
+ value: "var(--mantine-color-orange-outline-hover)"
4348
+ }
4349
+ },
4350
+ "orange[0]": {
4351
+ description: "Mantine color orange.0",
4352
+ value: "var(--mantine-color-orange-0)"
4353
+ },
4354
+ "orange[1]": {
4355
+ description: "Mantine color orange.1",
4356
+ value: "var(--mantine-color-orange-1)"
4357
+ },
4358
+ "orange[2]": {
4359
+ description: "Mantine color orange.2",
4360
+ value: "var(--mantine-color-orange-2)"
4361
+ },
4362
+ "orange[3]": {
4363
+ description: "Mantine color orange.3",
4364
+ value: "var(--mantine-color-orange-3)"
4365
+ },
4366
+ "orange[4]": {
4367
+ description: "Mantine color orange.4",
4368
+ value: "var(--mantine-color-orange-4)"
4369
+ },
4370
+ "orange[5]": {
4371
+ description: "Mantine color orange.5",
4372
+ value: "var(--mantine-color-orange-5)"
4373
+ },
4374
+ "orange[6]": {
4375
+ description: "Mantine color orange.6",
4376
+ value: "var(--mantine-color-orange-6)"
4377
+ },
4378
+ "orange[7]": {
4379
+ description: "Mantine color orange.7",
4380
+ value: "var(--mantine-color-orange-7)"
4381
+ },
4382
+ "orange[8]": {
4383
+ description: "Mantine color orange.8",
4384
+ value: "var(--mantine-color-orange-8)"
4385
+ },
4386
+ "orange[9]": {
4387
+ description: "Mantine color orange.9",
4388
+ value: "var(--mantine-color-orange-9)"
4389
+ },
4390
+ teal: {
4391
+ DEFAULT: {
4392
+ description: "Mantine color teal",
4393
+ value: "var(--mantine-color-teal-6)"
4430
4394
  },
4431
- "dark[1]": {
4432
- description: "Mantine color dark.1",
4433
- value: "var(--mantine-color-dark-1)"
4395
+ filled: {
4396
+ description: "Mantine color teal filled",
4397
+ value: "var(--mantine-color-teal-filled)"
4434
4398
  },
4435
- "dark[2]": {
4436
- description: "Mantine color dark.2",
4437
- value: "var(--mantine-color-dark-2)"
4399
+ filledHover: {
4400
+ description: "Mantine color teal filled hover",
4401
+ value: "var(--mantine-color-teal-filled-hover)"
4438
4402
  },
4439
- "dark[3]": {
4440
- description: "Mantine color dark.3",
4441
- value: "var(--mantine-color-dark-3)"
4403
+ light: {
4404
+ description: "Mantine color teal light",
4405
+ value: "var(--mantine-color-teal-light)"
4442
4406
  },
4443
- "dark[4]": {
4444
- description: "Mantine color dark.4",
4445
- value: "var(--mantine-color-dark-4)"
4407
+ lightHover: {
4408
+ description: "Mantine color teal light hover",
4409
+ value: "var(--mantine-color-teal-light-hover)"
4446
4410
  },
4447
- "dark[5]": {
4448
- description: "Mantine color dark.5",
4449
- value: "var(--mantine-color-dark-5)"
4411
+ lightColor: {
4412
+ description: "Mantine color teal light color",
4413
+ value: "var(--mantine-color-teal-light-color)"
4450
4414
  },
4451
- "dark[6]": {
4452
- description: "Mantine color dark.6",
4453
- value: "var(--mantine-color-dark-6)"
4415
+ outline: {
4416
+ description: "Mantine color teal outline",
4417
+ value: "var(--mantine-color-teal-outline)"
4454
4418
  },
4455
- "dark[7]": {
4456
- description: "Mantine color dark.7",
4457
- value: "var(--mantine-color-dark-7)"
4419
+ outlineHover: {
4420
+ description: "Mantine color teal outline hover",
4421
+ value: "var(--mantine-color-teal-outline-hover)"
4422
+ }
4423
+ },
4424
+ "teal[0]": {
4425
+ description: "Mantine color teal.0",
4426
+ value: "var(--mantine-color-teal-0)"
4427
+ },
4428
+ "teal[1]": {
4429
+ description: "Mantine color teal.1",
4430
+ value: "var(--mantine-color-teal-1)"
4431
+ },
4432
+ "teal[2]": {
4433
+ description: "Mantine color teal.2",
4434
+ value: "var(--mantine-color-teal-2)"
4435
+ },
4436
+ "teal[3]": {
4437
+ description: "Mantine color teal.3",
4438
+ value: "var(--mantine-color-teal-3)"
4439
+ },
4440
+ "teal[4]": {
4441
+ description: "Mantine color teal.4",
4442
+ value: "var(--mantine-color-teal-4)"
4443
+ },
4444
+ "teal[5]": {
4445
+ description: "Mantine color teal.5",
4446
+ value: "var(--mantine-color-teal-5)"
4447
+ },
4448
+ "teal[6]": {
4449
+ description: "Mantine color teal.6",
4450
+ value: "var(--mantine-color-teal-6)"
4451
+ },
4452
+ "teal[7]": {
4453
+ description: "Mantine color teal.7",
4454
+ value: "var(--mantine-color-teal-7)"
4455
+ },
4456
+ "teal[8]": {
4457
+ description: "Mantine color teal.8",
4458
+ value: "var(--mantine-color-teal-8)"
4459
+ },
4460
+ "teal[9]": {
4461
+ description: "Mantine color teal.9",
4462
+ value: "var(--mantine-color-teal-9)"
4463
+ },
4464
+ red: {
4465
+ DEFAULT: {
4466
+ description: "Mantine color red",
4467
+ value: "var(--mantine-color-red-6)"
4458
4468
  },
4459
- "dark[8]": {
4460
- description: "Mantine color dark.8",
4461
- value: "var(--mantine-color-dark-8)"
4469
+ filled: {
4470
+ description: "Mantine color red filled",
4471
+ value: "var(--mantine-color-red-filled)"
4462
4472
  },
4463
- "dark[9]": {
4464
- description: "Mantine color dark.9",
4465
- value: "var(--mantine-color-dark-9)"
4473
+ filledHover: {
4474
+ description: "Mantine color red filled hover",
4475
+ value: "var(--mantine-color-red-filled-hover)"
4466
4476
  },
4467
- orange: {
4468
- DEFAULT: {
4469
- description: "Mantine color orange",
4470
- value: "var(--mantine-color-orange-6)"
4471
- },
4472
- filled: {
4473
- description: "Mantine color orange filled",
4474
- value: "var(--mantine-color-orange-filled)"
4475
- },
4476
- filledHover: {
4477
- description: "Mantine color orange filled hover",
4478
- value: "var(--mantine-color-orange-filled-hover)"
4479
- },
4480
- light: {
4481
- description: "Mantine color orange light",
4482
- value: "var(--mantine-color-orange-light)"
4483
- },
4484
- lightHover: {
4485
- description: "Mantine color orange light hover",
4486
- value: "var(--mantine-color-orange-light-hover)"
4487
- },
4488
- lightColor: {
4489
- description: "Mantine color orange light color",
4490
- value: "var(--mantine-color-orange-light-color)"
4491
- },
4492
- outline: {
4493
- description: "Mantine color orange outline",
4494
- value: "var(--mantine-color-orange-outline)"
4495
- },
4496
- outlineHover: {
4497
- description: "Mantine color orange outline hover",
4498
- value: "var(--mantine-color-orange-outline-hover)"
4499
- }
4477
+ light: {
4478
+ description: "Mantine color red light",
4479
+ value: "var(--mantine-color-red-light)"
4500
4480
  },
4501
- "orange[0]": {
4502
- description: "Mantine color orange.0",
4503
- value: "var(--mantine-color-orange-0)"
4481
+ lightHover: {
4482
+ description: "Mantine color red light hover",
4483
+ value: "var(--mantine-color-red-light-hover)"
4504
4484
  },
4505
- "orange[1]": {
4506
- description: "Mantine color orange.1",
4507
- value: "var(--mantine-color-orange-1)"
4485
+ lightColor: {
4486
+ description: "Mantine color red light color",
4487
+ value: "var(--mantine-color-red-light-color)"
4508
4488
  },
4509
- "orange[2]": {
4510
- description: "Mantine color orange.2",
4511
- value: "var(--mantine-color-orange-2)"
4489
+ outline: {
4490
+ description: "Mantine color red outline",
4491
+ value: "var(--mantine-color-red-outline)"
4512
4492
  },
4513
- "orange[3]": {
4514
- description: "Mantine color orange.3",
4515
- value: "var(--mantine-color-orange-3)"
4493
+ outlineHover: {
4494
+ description: "Mantine color red outline hover",
4495
+ value: "var(--mantine-color-red-outline-hover)"
4496
+ }
4497
+ },
4498
+ "red[0]": {
4499
+ description: "Mantine color red.0",
4500
+ value: "var(--mantine-color-red-0)"
4501
+ },
4502
+ "red[1]": {
4503
+ description: "Mantine color red.1",
4504
+ value: "var(--mantine-color-red-1)"
4505
+ },
4506
+ "red[2]": {
4507
+ description: "Mantine color red.2",
4508
+ value: "var(--mantine-color-red-2)"
4509
+ },
4510
+ "red[3]": {
4511
+ description: "Mantine color red.3",
4512
+ value: "var(--mantine-color-red-3)"
4513
+ },
4514
+ "red[4]": {
4515
+ description: "Mantine color red.4",
4516
+ value: "var(--mantine-color-red-4)"
4517
+ },
4518
+ "red[5]": {
4519
+ description: "Mantine color red.5",
4520
+ value: "var(--mantine-color-red-5)"
4521
+ },
4522
+ "red[6]": {
4523
+ description: "Mantine color red.6",
4524
+ value: "var(--mantine-color-red-6)"
4525
+ },
4526
+ "red[7]": {
4527
+ description: "Mantine color red.7",
4528
+ value: "var(--mantine-color-red-7)"
4529
+ },
4530
+ "red[8]": {
4531
+ description: "Mantine color red.8",
4532
+ value: "var(--mantine-color-red-8)"
4533
+ },
4534
+ "red[9]": {
4535
+ description: "Mantine color red.9",
4536
+ value: "var(--mantine-color-red-9)"
4537
+ },
4538
+ green: {
4539
+ DEFAULT: {
4540
+ description: "Mantine color green",
4541
+ value: "var(--mantine-color-green-6)"
4516
4542
  },
4517
- "orange[4]": {
4518
- description: "Mantine color orange.4",
4519
- value: "var(--mantine-color-orange-4)"
4543
+ filled: {
4544
+ description: "Mantine color green filled",
4545
+ value: "var(--mantine-color-green-filled)"
4520
4546
  },
4521
- "orange[5]": {
4522
- description: "Mantine color orange.5",
4523
- value: "var(--mantine-color-orange-5)"
4547
+ filledHover: {
4548
+ description: "Mantine color green filled hover",
4549
+ value: "var(--mantine-color-green-filled-hover)"
4524
4550
  },
4525
- "orange[6]": {
4526
- description: "Mantine color orange.6",
4527
- value: "var(--mantine-color-orange-6)"
4551
+ light: {
4552
+ description: "Mantine color green light",
4553
+ value: "var(--mantine-color-green-light)"
4528
4554
  },
4529
- "orange[7]": {
4530
- description: "Mantine color orange.7",
4531
- value: "var(--mantine-color-orange-7)"
4555
+ lightHover: {
4556
+ description: "Mantine color green light hover",
4557
+ value: "var(--mantine-color-green-light-hover)"
4532
4558
  },
4533
- "orange[8]": {
4534
- description: "Mantine color orange.8",
4535
- value: "var(--mantine-color-orange-8)"
4559
+ lightColor: {
4560
+ description: "Mantine color green light color",
4561
+ value: "var(--mantine-color-green-light-color)"
4536
4562
  },
4537
- "orange[9]": {
4538
- description: "Mantine color orange.9",
4539
- value: "var(--mantine-color-orange-9)"
4563
+ outline: {
4564
+ description: "Mantine color green outline",
4565
+ value: "var(--mantine-color-green-outline)"
4540
4566
  },
4541
- teal: {
4542
- DEFAULT: {
4543
- description: "Mantine color teal",
4544
- value: "var(--mantine-color-teal-6)"
4545
- },
4546
- filled: {
4547
- description: "Mantine color teal filled",
4548
- value: "var(--mantine-color-teal-filled)"
4549
- },
4550
- filledHover: {
4551
- description: "Mantine color teal filled hover",
4552
- value: "var(--mantine-color-teal-filled-hover)"
4553
- },
4554
- light: {
4555
- description: "Mantine color teal light",
4556
- value: "var(--mantine-color-teal-light)"
4557
- },
4558
- lightHover: {
4559
- description: "Mantine color teal light hover",
4560
- value: "var(--mantine-color-teal-light-hover)"
4561
- },
4562
- lightColor: {
4563
- description: "Mantine color teal light color",
4564
- value: "var(--mantine-color-teal-light-color)"
4565
- },
4566
- outline: {
4567
- description: "Mantine color teal outline",
4568
- value: "var(--mantine-color-teal-outline)"
4569
- },
4570
- outlineHover: {
4571
- description: "Mantine color teal outline hover",
4572
- value: "var(--mantine-color-teal-outline-hover)"
4573
- }
4574
- },
4575
- "teal[0]": {
4576
- description: "Mantine color teal.0",
4577
- value: "var(--mantine-color-teal-0)"
4578
- },
4579
- "teal[1]": {
4580
- description: "Mantine color teal.1",
4581
- value: "var(--mantine-color-teal-1)"
4582
- },
4583
- "teal[2]": {
4584
- description: "Mantine color teal.2",
4585
- value: "var(--mantine-color-teal-2)"
4586
- },
4587
- "teal[3]": {
4588
- description: "Mantine color teal.3",
4589
- value: "var(--mantine-color-teal-3)"
4590
- },
4591
- "teal[4]": {
4592
- description: "Mantine color teal.4",
4593
- value: "var(--mantine-color-teal-4)"
4594
- },
4595
- "teal[5]": {
4596
- description: "Mantine color teal.5",
4597
- value: "var(--mantine-color-teal-5)"
4598
- },
4599
- "teal[6]": {
4600
- description: "Mantine color teal.6",
4601
- value: "var(--mantine-color-teal-6)"
4602
- },
4603
- "teal[7]": {
4604
- description: "Mantine color teal.7",
4605
- value: "var(--mantine-color-teal-7)"
4606
- },
4607
- "teal[8]": {
4608
- description: "Mantine color teal.8",
4609
- value: "var(--mantine-color-teal-8)"
4610
- },
4611
- "teal[9]": {
4612
- description: "Mantine color teal.9",
4613
- value: "var(--mantine-color-teal-9)"
4614
- },
4615
- red: {
4616
- DEFAULT: {
4617
- description: "Mantine color red",
4618
- value: "var(--mantine-color-red-6)"
4619
- },
4620
- filled: {
4621
- description: "Mantine color red filled",
4622
- value: "var(--mantine-color-red-filled)"
4623
- },
4624
- filledHover: {
4625
- description: "Mantine color red filled hover",
4626
- value: "var(--mantine-color-red-filled-hover)"
4627
- },
4628
- light: {
4629
- description: "Mantine color red light",
4630
- value: "var(--mantine-color-red-light)"
4631
- },
4632
- lightHover: {
4633
- description: "Mantine color red light hover",
4634
- value: "var(--mantine-color-red-light-hover)"
4635
- },
4636
- lightColor: {
4637
- description: "Mantine color red light color",
4638
- value: "var(--mantine-color-red-light-color)"
4639
- },
4640
- outline: {
4641
- description: "Mantine color red outline",
4642
- value: "var(--mantine-color-red-outline)"
4643
- },
4644
- outlineHover: {
4645
- description: "Mantine color red outline hover",
4646
- value: "var(--mantine-color-red-outline-hover)"
4647
- }
4648
- },
4649
- "red[0]": {
4650
- description: "Mantine color red.0",
4651
- value: "var(--mantine-color-red-0)"
4652
- },
4653
- "red[1]": {
4654
- description: "Mantine color red.1",
4655
- value: "var(--mantine-color-red-1)"
4656
- },
4657
- "red[2]": {
4658
- description: "Mantine color red.2",
4659
- value: "var(--mantine-color-red-2)"
4660
- },
4661
- "red[3]": {
4662
- description: "Mantine color red.3",
4663
- value: "var(--mantine-color-red-3)"
4664
- },
4665
- "red[4]": {
4666
- description: "Mantine color red.4",
4667
- value: "var(--mantine-color-red-4)"
4668
- },
4669
- "red[5]": {
4670
- description: "Mantine color red.5",
4671
- value: "var(--mantine-color-red-5)"
4672
- },
4673
- "red[6]": {
4674
- description: "Mantine color red.6",
4675
- value: "var(--mantine-color-red-6)"
4676
- },
4677
- "red[7]": {
4678
- description: "Mantine color red.7",
4679
- value: "var(--mantine-color-red-7)"
4680
- },
4681
- "red[8]": {
4682
- description: "Mantine color red.8",
4683
- value: "var(--mantine-color-red-8)"
4684
- },
4685
- "red[9]": {
4686
- description: "Mantine color red.9",
4687
- value: "var(--mantine-color-red-9)"
4688
- },
4689
- green: {
4690
- DEFAULT: {
4691
- description: "Mantine color green",
4692
- value: "var(--mantine-color-green-6)"
4693
- },
4694
- filled: {
4695
- description: "Mantine color green filled",
4696
- value: "var(--mantine-color-green-filled)"
4697
- },
4698
- filledHover: {
4699
- description: "Mantine color green filled hover",
4700
- value: "var(--mantine-color-green-filled-hover)"
4701
- },
4702
- light: {
4703
- description: "Mantine color green light",
4704
- value: "var(--mantine-color-green-light)"
4705
- },
4706
- lightHover: {
4707
- description: "Mantine color green light hover",
4708
- value: "var(--mantine-color-green-light-hover)"
4709
- },
4710
- lightColor: {
4711
- description: "Mantine color green light color",
4712
- value: "var(--mantine-color-green-light-color)"
4713
- },
4714
- outline: {
4715
- description: "Mantine color green outline",
4716
- value: "var(--mantine-color-green-outline)"
4717
- },
4718
- outlineHover: {
4719
- description: "Mantine color green outline hover",
4720
- value: "var(--mantine-color-green-outline-hover)"
4721
- }
4722
- },
4723
- "green[0]": {
4724
- description: "Mantine color green.0",
4725
- value: "var(--mantine-color-green-0)"
4726
- },
4727
- "green[1]": {
4728
- description: "Mantine color green.1",
4729
- value: "var(--mantine-color-green-1)"
4730
- },
4731
- "green[2]": {
4732
- description: "Mantine color green.2",
4733
- value: "var(--mantine-color-green-2)"
4734
- },
4735
- "green[3]": {
4736
- description: "Mantine color green.3",
4737
- value: "var(--mantine-color-green-3)"
4738
- },
4739
- "green[4]": {
4740
- description: "Mantine color green.4",
4741
- value: "var(--mantine-color-green-4)"
4742
- },
4743
- "green[5]": {
4744
- description: "Mantine color green.5",
4745
- value: "var(--mantine-color-green-5)"
4746
- },
4747
- "green[6]": {
4748
- description: "Mantine color green.6",
4749
- value: "var(--mantine-color-green-6)"
4750
- },
4751
- "green[7]": {
4752
- description: "Mantine color green.7",
4753
- value: "var(--mantine-color-green-7)"
4754
- },
4755
- "green[8]": {
4756
- description: "Mantine color green.8",
4757
- value: "var(--mantine-color-green-8)"
4758
- },
4759
- "green[9]": {
4760
- description: "Mantine color green.9",
4761
- value: "var(--mantine-color-green-9)"
4762
- },
4763
- yellow: {
4764
- DEFAULT: {
4765
- description: "Mantine color yellow",
4766
- value: "var(--mantine-color-yellow-6)"
4767
- },
4768
- filled: {
4769
- description: "Mantine color yellow filled",
4770
- value: "var(--mantine-color-yellow-filled)"
4771
- },
4772
- filledHover: {
4773
- description: "Mantine color yellow filled hover",
4774
- value: "var(--mantine-color-yellow-filled-hover)"
4775
- },
4776
- light: {
4777
- description: "Mantine color yellow light",
4778
- value: "var(--mantine-color-yellow-light)"
4779
- },
4780
- lightHover: {
4781
- description: "Mantine color yellow light hover",
4782
- value: "var(--mantine-color-yellow-light-hover)"
4783
- },
4784
- lightColor: {
4785
- description: "Mantine color yellow light color",
4786
- value: "var(--mantine-color-yellow-light-color)"
4787
- },
4788
- outline: {
4789
- description: "Mantine color yellow outline",
4790
- value: "var(--mantine-color-yellow-outline)"
4791
- },
4792
- outlineHover: {
4793
- description: "Mantine color yellow outline hover",
4794
- value: "var(--mantine-color-yellow-outline-hover)"
4795
- }
4796
- },
4797
- "yellow[0]": {
4798
- description: "Mantine color yellow.0",
4799
- value: "var(--mantine-color-yellow-0)"
4800
- },
4801
- "yellow[1]": {
4802
- description: "Mantine color yellow.1",
4803
- value: "var(--mantine-color-yellow-1)"
4804
- },
4805
- "yellow[2]": {
4806
- description: "Mantine color yellow.2",
4807
- value: "var(--mantine-color-yellow-2)"
4808
- },
4809
- "yellow[3]": {
4810
- description: "Mantine color yellow.3",
4811
- value: "var(--mantine-color-yellow-3)"
4812
- },
4813
- "yellow[4]": {
4814
- description: "Mantine color yellow.4",
4815
- value: "var(--mantine-color-yellow-4)"
4567
+ outlineHover: {
4568
+ description: "Mantine color green outline hover",
4569
+ value: "var(--mantine-color-green-outline-hover)"
4570
+ }
4571
+ },
4572
+ "green[0]": {
4573
+ description: "Mantine color green.0",
4574
+ value: "var(--mantine-color-green-0)"
4575
+ },
4576
+ "green[1]": {
4577
+ description: "Mantine color green.1",
4578
+ value: "var(--mantine-color-green-1)"
4579
+ },
4580
+ "green[2]": {
4581
+ description: "Mantine color green.2",
4582
+ value: "var(--mantine-color-green-2)"
4583
+ },
4584
+ "green[3]": {
4585
+ description: "Mantine color green.3",
4586
+ value: "var(--mantine-color-green-3)"
4587
+ },
4588
+ "green[4]": {
4589
+ description: "Mantine color green.4",
4590
+ value: "var(--mantine-color-green-4)"
4591
+ },
4592
+ "green[5]": {
4593
+ description: "Mantine color green.5",
4594
+ value: "var(--mantine-color-green-5)"
4595
+ },
4596
+ "green[6]": {
4597
+ description: "Mantine color green.6",
4598
+ value: "var(--mantine-color-green-6)"
4599
+ },
4600
+ "green[7]": {
4601
+ description: "Mantine color green.7",
4602
+ value: "var(--mantine-color-green-7)"
4603
+ },
4604
+ "green[8]": {
4605
+ description: "Mantine color green.8",
4606
+ value: "var(--mantine-color-green-8)"
4607
+ },
4608
+ "green[9]": {
4609
+ description: "Mantine color green.9",
4610
+ value: "var(--mantine-color-green-9)"
4611
+ },
4612
+ yellow: {
4613
+ DEFAULT: {
4614
+ description: "Mantine color yellow",
4615
+ value: "var(--mantine-color-yellow-6)"
4816
4616
  },
4817
- "yellow[5]": {
4818
- description: "Mantine color yellow.5",
4819
- value: "var(--mantine-color-yellow-5)"
4617
+ filled: {
4618
+ description: "Mantine color yellow filled",
4619
+ value: "var(--mantine-color-yellow-filled)"
4820
4620
  },
4821
- "yellow[6]": {
4822
- description: "Mantine color yellow.6",
4823
- value: "var(--mantine-color-yellow-6)"
4621
+ filledHover: {
4622
+ description: "Mantine color yellow filled hover",
4623
+ value: "var(--mantine-color-yellow-filled-hover)"
4824
4624
  },
4825
- "yellow[7]": {
4826
- description: "Mantine color yellow.7",
4827
- value: "var(--mantine-color-yellow-7)"
4625
+ light: {
4626
+ description: "Mantine color yellow light",
4627
+ value: "var(--mantine-color-yellow-light)"
4828
4628
  },
4829
- "yellow[8]": {
4830
- description: "Mantine color yellow.8",
4831
- value: "var(--mantine-color-yellow-8)"
4629
+ lightHover: {
4630
+ description: "Mantine color yellow light hover",
4631
+ value: "var(--mantine-color-yellow-light-hover)"
4832
4632
  },
4833
- "yellow[9]": {
4834
- description: "Mantine color yellow.9",
4835
- value: "var(--mantine-color-yellow-9)"
4836
- }
4837
- }
4838
- }
4839
- },
4840
- shadows: {
4841
- xs: {
4842
- value: "0 calc(0.0625rem * var(--mantine-scale)) calc(0.1875rem * var(--mantine-scale)) rgba(0, 0, 0, 0.05), 0 calc(0.0625rem * var(--mantine-scale)) calc(0.125rem * var(--mantine-scale)) rgba(0, 0, 0, 0.1)"
4843
- },
4844
- sm: {
4845
- value: "0 calc(0.0625rem * var(--mantine-scale)) calc(0.1875rem * var(--mantine-scale)) rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 0 calc(0.625rem * var(--mantine-scale)) calc(0.9375rem * var(--mantine-scale)) calc(-0.3125rem * var(--mantine-scale)), rgba(0, 0, 0, 0.04) 0 calc(0.4375rem * var(--mantine-scale)) calc(0.4375rem * var(--mantine-scale)) calc(-0.3125rem * var(--mantine-scale))"
4846
- },
4847
- md: {
4848
- value: "0 calc(0.0625rem * var(--mantine-scale)) calc(0.1875rem * var(--mantine-scale)) rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 0 calc(1.25rem * var(--mantine-scale)) calc(1.5625rem * var(--mantine-scale)) calc(-0.3125rem * var(--mantine-scale)), rgba(0, 0, 0, 0.04) 0 calc(0.625rem * var(--mantine-scale)) calc(0.625rem * var(--mantine-scale)) calc(-0.3125rem * var(--mantine-scale))"
4849
- },
4850
- lg: {
4851
- value: "0 calc(0.0625rem * var(--mantine-scale)) calc(0.1875rem * var(--mantine-scale)) rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 0 calc(1.75rem * var(--mantine-scale)) calc(1.4375rem * var(--mantine-scale)) calc(-0.4375rem * var(--mantine-scale)), rgba(0, 0, 0, 0.04) 0 calc(0.75rem * var(--mantine-scale)) calc(0.75rem * var(--mantine-scale)) calc(-0.4375rem * var(--mantine-scale))"
4852
- },
4853
- xl: {
4854
- value: "0 calc(0.0625rem * var(--mantine-scale)) calc(0.1875rem * var(--mantine-scale)) rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 0 calc(2.25rem * var(--mantine-scale)) calc(1.75rem * var(--mantine-scale)) calc(-0.4375rem * var(--mantine-scale)), rgba(0, 0, 0, 0.04) 0 calc(1.0625rem * var(--mantine-scale)) calc(1.0625rem * var(--mantine-scale)) calc(-0.4375rem * var(--mantine-scale))"
4855
- }
4856
- }
4857
- },
4858
- semanticTokens: {
4859
- colors: {
4860
- likec4: {
4861
- amber: {
4862
- element: {
4863
- fill: {
4864
- value: "#A35829"
4865
- },
4866
- stroke: {
4867
- value: "#7E451D"
4868
- },
4869
- hiContrast: {
4870
- value: "#FFE0C2"
4871
- },
4872
- loContrast: {
4873
- value: "#f9b27c"
4874
- }
4633
+ lightColor: {
4634
+ description: "Mantine color yellow light color",
4635
+ value: "var(--mantine-color-yellow-light-color)"
4875
4636
  },
4876
- relation: {
4877
- stroke: {
4878
- DEFAULT: {
4879
- value: "#b45309"
4880
- },
4881
- selected: {
4882
- value: {
4883
- _light: "rgb(153, 70.55, 7.65)",
4884
- _dark: "rgb(202.5, 134.6, 82.8)"
4885
- }
4886
- }
4887
- },
4888
- label: {
4889
- DEFAULT: {
4890
- value: "#FFE0C2"
4891
- },
4892
- bg: {
4893
- value: "#78350f"
4894
- }
4895
- }
4896
- }
4897
- },
4898
- blue: {
4899
- element: {
4900
- fill: {
4901
- value: "#3b82f6"
4902
- },
4903
- stroke: {
4904
- value: "#2563eb"
4905
- },
4906
- hiContrast: {
4907
- value: "#eff6ff"
4908
- },
4909
- loContrast: {
4910
- value: "#bfdbfe"
4911
- }
4637
+ outline: {
4638
+ description: "Mantine color yellow outline",
4639
+ value: "var(--mantine-color-yellow-outline)"
4912
4640
  },
4913
- relation: {
4914
- stroke: {
4915
- DEFAULT: {
4916
- value: "#3b82f6"
4917
- },
4918
- selected: {
4919
- value: {
4920
- _light: "rgb(50.15, 110.5, 209.1)",
4921
- _dark: "rgb(117.8, 167.5, 248.7)"
4922
- }
4923
- }
4924
- },
4925
- label: {
4926
- DEFAULT: {
4927
- value: "#60a5fa"
4928
- },
4929
- bg: {
4930
- value: "#172554"
4931
- }
4932
- }
4641
+ outlineHover: {
4642
+ description: "Mantine color yellow outline hover",
4643
+ value: "var(--mantine-color-yellow-outline-hover)"
4933
4644
  }
4934
4645
  },
4935
- gray: {
4936
- element: {
4937
- fill: {
4938
- value: "#737373"
4939
- },
4940
- stroke: {
4941
- value: "#525252"
4942
- },
4943
- hiContrast: {
4944
- value: "#fafafa"
4945
- },
4946
- loContrast: {
4947
- value: "#d4d4d4"
4948
- }
4949
- },
4950
- relation: {
4951
- stroke: {
4952
- DEFAULT: {
4953
- value: "#6E6E6E"
4954
- },
4955
- selected: {
4956
- value: {
4957
- _light: "rgb(93.5, 93.5, 93.5)",
4958
- _dark: "rgb(153.5, 153.5, 153.5)"
4959
- }
4960
- }
4961
- },
4962
- label: {
4963
- DEFAULT: {
4964
- value: "#C6C6C6"
4965
- },
4966
- bg: {
4967
- value: "#18191b"
4968
- }
4969
- }
4970
- }
4646
+ "yellow[0]": {
4647
+ description: "Mantine color yellow.0",
4648
+ value: "var(--mantine-color-yellow-0)"
4971
4649
  },
4972
- slate: {
4973
- element: {
4974
- fill: {
4975
- value: "#64748b"
4976
- },
4977
- stroke: {
4978
- value: "#475569"
4979
- },
4980
- hiContrast: {
4981
- value: "#f8fafc"
4982
- },
4983
- loContrast: {
4984
- value: "#cbd5e1"
4985
- }
4986
- },
4987
- relation: {
4988
- stroke: {
4989
- DEFAULT: {
4990
- value: "#64748b"
4991
- },
4992
- selected: {
4993
- value: {
4994
- _light: "rgb(85, 98.6, 118.15)",
4995
- _dark: "rgb(146.5, 157.7, 173.8)"
4996
- }
4997
- }
4998
- },
4999
- label: {
5000
- DEFAULT: {
5001
- value: "#cbd5e1"
5002
- },
5003
- bg: {
5004
- value: "#0f172a"
5005
- }
5006
- }
5007
- }
4650
+ "yellow[1]": {
4651
+ description: "Mantine color yellow.1",
4652
+ value: "var(--mantine-color-yellow-1)"
5008
4653
  },
5009
- green: {
5010
- element: {
5011
- fill: {
5012
- value: "#428a4f"
5013
- },
5014
- stroke: {
5015
- value: "#2d5d39"
5016
- },
5017
- hiContrast: {
5018
- value: "#f8fafc"
5019
- },
5020
- loContrast: {
5021
- value: "#c2f0c2"
5022
- }
5023
- },
5024
- relation: {
5025
- stroke: {
5026
- DEFAULT: {
5027
- value: "#15803d"
5028
- },
5029
- selected: {
5030
- value: {
5031
- _light: "rgb(17.85, 108.8, 51.85)",
5032
- _dark: "rgb(91.2, 166.1, 119.2)"
5033
- }
5034
- }
5035
- },
5036
- label: {
5037
- DEFAULT: {
5038
- value: "#22c55e"
5039
- },
5040
- bg: {
5041
- value: "#052e16"
5042
- }
5043
- }
5044
- }
4654
+ "yellow[2]": {
4655
+ description: "Mantine color yellow.2",
4656
+ value: "var(--mantine-color-yellow-2)"
5045
4657
  },
5046
- indigo: {
5047
- element: {
5048
- fill: {
5049
- value: "#6366f1"
5050
- },
5051
- stroke: {
5052
- value: "#4f46e5"
5053
- },
5054
- hiContrast: {
5055
- value: "#eef2ff"
5056
- },
5057
- loContrast: {
5058
- value: "#c7d2fe"
5059
- }
5060
- },
5061
- relation: {
5062
- stroke: {
5063
- DEFAULT: {
5064
- value: "#6366f1"
5065
- },
5066
- selected: {
5067
- value: {
5068
- _light: "rgb(84.15, 86.7, 204.85)",
5069
- _dark: "rgb(145.8, 147.9, 245.2)"
5070
- }
5071
- }
5072
- },
5073
- label: {
5074
- DEFAULT: {
5075
- value: "#818cf8"
5076
- },
5077
- bg: {
5078
- value: "#1e1b4b"
5079
- }
5080
- }
5081
- }
4658
+ "yellow[3]": {
4659
+ description: "Mantine color yellow.3",
4660
+ value: "var(--mantine-color-yellow-3)"
5082
4661
  },
5083
- muted: {
5084
- element: {
5085
- fill: {
5086
- value: "#64748b"
5087
- },
5088
- stroke: {
5089
- value: "#475569"
5090
- },
5091
- hiContrast: {
5092
- value: "#f8fafc"
5093
- },
5094
- loContrast: {
5095
- value: "#cbd5e1"
5096
- }
5097
- },
5098
- relation: {
5099
- stroke: {
5100
- DEFAULT: {
5101
- value: "#64748b"
5102
- },
5103
- selected: {
5104
- value: {
5105
- _light: "rgb(85, 98.6, 118.15)",
5106
- _dark: "rgb(146.5, 157.7, 173.8)"
5107
- }
5108
- }
5109
- },
5110
- label: {
5111
- DEFAULT: {
5112
- value: "#cbd5e1"
5113
- },
5114
- bg: {
5115
- value: "#0f172a"
5116
- }
5117
- }
5118
- }
4662
+ "yellow[4]": {
4663
+ description: "Mantine color yellow.4",
4664
+ value: "var(--mantine-color-yellow-4)"
5119
4665
  },
5120
- primary: {
5121
- element: {
5122
- fill: {
5123
- value: "#3b82f6"
5124
- },
5125
- stroke: {
5126
- value: "#2563eb"
5127
- },
5128
- hiContrast: {
5129
- value: "#eff6ff"
5130
- },
5131
- loContrast: {
5132
- value: "#bfdbfe"
5133
- }
5134
- },
5135
- relation: {
5136
- stroke: {
5137
- DEFAULT: {
5138
- value: "#3b82f6"
5139
- },
5140
- selected: {
5141
- value: {
5142
- _light: "rgb(50.15, 110.5, 209.1)",
5143
- _dark: "rgb(117.8, 167.5, 248.7)"
5144
- }
5145
- }
5146
- },
5147
- label: {
5148
- DEFAULT: {
5149
- value: "#60a5fa"
5150
- },
5151
- bg: {
5152
- value: "#172554"
5153
- }
5154
- }
5155
- }
4666
+ "yellow[5]": {
4667
+ description: "Mantine color yellow.5",
4668
+ value: "var(--mantine-color-yellow-5)"
5156
4669
  },
5157
- red: {
5158
- element: {
5159
- fill: {
5160
- value: "#AC4D39"
5161
- },
5162
- stroke: {
5163
- value: "#853A2D"
5164
- },
5165
- hiContrast: {
5166
- value: "#FBD3CB"
5167
- },
5168
- loContrast: {
5169
- value: "#f5b2a3"
5170
- }
5171
- },
5172
- relation: {
5173
- stroke: {
5174
- DEFAULT: {
5175
- value: "#AC4D39"
5176
- },
5177
- selected: {
5178
- value: {
5179
- _light: "rgb(146.2, 65.45, 48.45)",
5180
- _dark: "rgb(196.9, 130.4, 116.4)"
5181
- }
5182
- }
5183
- },
5184
- label: {
5185
- DEFAULT: {
5186
- value: "#f5b2a3"
5187
- },
5188
- bg: {
5189
- value: "#b91c1c"
5190
- }
5191
- }
5192
- }
4670
+ "yellow[6]": {
4671
+ description: "Mantine color yellow.6",
4672
+ value: "var(--mantine-color-yellow-6)"
5193
4673
  },
5194
- secondary: {
5195
- element: {
5196
- fill: {
5197
- value: "#0284c7"
5198
- },
5199
- stroke: {
5200
- value: "#0369a1"
5201
- },
5202
- hiContrast: {
5203
- value: "#f0f9ff"
5204
- },
5205
- loContrast: {
5206
- value: "#B6ECF7"
5207
- }
5208
- },
5209
- relation: {
5210
- stroke: {
5211
- DEFAULT: {
5212
- value: "#0ea5e9"
5213
- },
5214
- selected: {
5215
- value: {
5216
- _light: "rgb(11.9, 140.25, 198.05)",
5217
- _dark: "rgb(86.3, 192, 239.6)"
5218
- }
5219
- }
5220
- },
5221
- label: {
5222
- DEFAULT: {
5223
- value: "#38bdf8"
5224
- },
5225
- bg: {
5226
- value: "#082f49"
5227
- }
5228
- }
5229
- }
4674
+ "yellow[7]": {
4675
+ description: "Mantine color yellow.7",
4676
+ value: "var(--mantine-color-yellow-7)"
5230
4677
  },
5231
- sky: {
5232
- element: {
5233
- fill: {
5234
- value: "#0284c7"
5235
- },
5236
- stroke: {
5237
- value: "#0369a1"
5238
- },
5239
- hiContrast: {
5240
- value: "#f0f9ff"
5241
- },
5242
- loContrast: {
5243
- value: "#B6ECF7"
5244
- }
5245
- },
5246
- relation: {
5247
- stroke: {
5248
- DEFAULT: {
5249
- value: "#0ea5e9"
5250
- },
5251
- selected: {
5252
- value: {
5253
- _light: "rgb(11.9, 140.25, 198.05)",
5254
- _dark: "rgb(86.3, 192, 239.6)"
5255
- }
5256
- }
5257
- },
5258
- label: {
5259
- DEFAULT: {
5260
- value: "#38bdf8"
5261
- },
5262
- bg: {
5263
- value: "#082f49"
5264
- }
5265
- }
5266
- }
4678
+ "yellow[8]": {
4679
+ description: "Mantine color yellow.8",
4680
+ value: "var(--mantine-color-yellow-8)"
5267
4681
  },
5268
- compound1: {
5269
- amber: {
5270
- hiContrast: {
5271
- value: "{colors.likec4.amber.element.hiContrast}"
5272
- },
5273
- loContrast: {
5274
- value: "{colors.likec4.amber.element.loContrast}"
5275
- },
5276
- fill: {
5277
- value: {
5278
- _light: "#794524",
5279
- _dark: "#704225"
5280
- }
5281
- },
5282
- stroke: {
5283
- value: {
5284
- _light: "#5e361a",
5285
- _dark: "#56331b"
5286
- }
5287
- }
5288
- },
5289
- blue: {
5290
- hiContrast: {
5291
- value: "{colors.likec4.blue.element.hiContrast}"
5292
- },
5293
- loContrast: {
5294
- value: "{colors.likec4.blue.element.loContrast}"
5295
- },
5296
- fill: {
5297
- value: {
5298
- _light: "#145ed7",
5299
- _dark: "#1a5bc5"
5300
- }
5301
- },
5302
- stroke: {
5303
- value: {
5304
- _light: "#194bb8",
5305
- _dark: "#1e49a9"
5306
- }
5307
- }
5308
- },
5309
- gray: {
5310
- hiContrast: {
5311
- value: "{colors.likec4.gray.element.hiContrast}"
5312
- },
5313
- loContrast: {
5314
- value: "{colors.likec4.gray.element.loContrast}"
5315
- },
5316
- fill: {
5317
- value: {
5318
- _light: "#595959",
5319
- _dark: "#545454"
5320
- }
5321
- },
5322
- stroke: {
5323
- value: {
5324
- _light: "#3f3f3f",
5325
- _dark: "#3c3c3c"
5326
- }
5327
- }
5328
- },
5329
- slate: {
5330
- hiContrast: {
5331
- value: "{colors.likec4.slate.element.hiContrast}"
5332
- },
5333
- loContrast: {
5334
- value: "{colors.likec4.slate.element.loContrast}"
5335
- },
5336
- fill: {
5337
- value: {
5338
- _light: "#4e5a6a",
5339
- _dark: "#4b5563"
5340
- }
5341
- },
5342
- stroke: {
5343
- value: {
5344
- _light: "#384250",
5345
- _dark: "#363e4b"
5346
- }
5347
- }
5348
- },
5349
- green: {
5350
- hiContrast: {
5351
- value: "{colors.likec4.green.element.hiContrast}"
5352
- },
5353
- loContrast: {
5354
- value: "{colors.likec4.green.element.loContrast}"
5355
- },
5356
- fill: {
5357
- value: {
5358
- _light: "#35683e",
5359
- _dark: "#34613c"
5360
- }
5361
- },
5362
- stroke: {
5363
- value: {
5364
- _light: "#24462d",
5365
- _dark: "#24412b"
5366
- }
5367
- }
5368
- },
5369
- indigo: {
5370
- hiContrast: {
5371
- value: "{colors.likec4.indigo.element.hiContrast}"
5372
- },
5373
- loContrast: {
5374
- value: "{colors.likec4.indigo.element.loContrast}"
5375
- },
5376
- fill: {
5377
- value: {
5378
- _light: "#2529e1",
5379
- _dark: "#2529d3"
5380
- }
5381
- },
5382
- stroke: {
5383
- value: {
5384
- _light: "#2d24c2",
5385
- _dark: "#3028b2"
5386
- }
5387
- }
5388
- },
5389
- muted: {
5390
- hiContrast: {
5391
- value: "{colors.likec4.muted.element.hiContrast}"
5392
- },
5393
- loContrast: {
5394
- value: "{colors.likec4.muted.element.loContrast}"
5395
- },
5396
- fill: {
5397
- value: {
5398
- _light: "#4e5a6a",
5399
- _dark: "#4b5563"
5400
- }
5401
- },
5402
- stroke: {
5403
- value: {
5404
- _light: "#384250",
5405
- _dark: "#363e4b"
5406
- }
5407
- }
5408
- },
5409
- primary: {
5410
- hiContrast: {
5411
- value: "{colors.likec4.primary.element.hiContrast}"
5412
- },
5413
- loContrast: {
5414
- value: "{colors.likec4.primary.element.loContrast}"
5415
- },
5416
- fill: {
5417
- value: {
5418
- _light: "#145ed7",
5419
- _dark: "#1a5bc5"
5420
- }
5421
- },
5422
- stroke: {
5423
- value: {
5424
- _light: "#194bb8",
5425
- _dark: "#1e49a9"
5426
- }
5427
- }
5428
- },
5429
- red: {
5430
- hiContrast: {
5431
- value: "{colors.likec4.red.element.hiContrast}"
5432
- },
5433
- loContrast: {
5434
- value: "{colors.likec4.red.element.loContrast}"
5435
- },
5436
- fill: {
5437
- value: {
5438
- _light: "#803e30",
5439
- _dark: "#773d30"
5440
- }
5441
- },
5442
- stroke: {
5443
- value: {
5444
- _light: "#632f26",
5445
- _dark: "#5c2e26"
5446
- }
5447
- }
5448
- },
5449
- secondary: {
5450
- hiContrast: {
5451
- value: "{colors.likec4.secondary.element.hiContrast}"
5452
- },
5453
- loContrast: {
5454
- value: "{colors.likec4.secondary.element.loContrast}"
5455
- },
5456
- fill: {
5457
- value: {
5458
- _light: "#086392",
5459
- _dark: "#0d5d86"
5460
- }
5461
- },
5462
- stroke: {
5463
- value: {
5464
- _light: "#084f76",
5465
- _dark: "#0b4a6c"
5466
- }
5467
- }
5468
- },
5469
- sky: {
5470
- hiContrast: {
5471
- value: "{colors.likec4.sky.element.hiContrast}"
5472
- },
5473
- loContrast: {
5474
- value: "{colors.likec4.sky.element.loContrast}"
5475
- },
5476
- fill: {
5477
- value: {
5478
- _light: "#086392",
5479
- _dark: "#0d5d86"
5480
- }
5481
- },
5482
- stroke: {
5483
- value: {
5484
- _light: "#084f76",
5485
- _dark: "#0b4a6c"
5486
- }
5487
- }
5488
- }
5489
- },
5490
- compound2: {
5491
- amber: {
5492
- hiContrast: {
5493
- value: "{colors.likec4.amber.element.hiContrast}"
5494
- },
5495
- loContrast: {
5496
- value: "{colors.likec4.amber.element.loContrast}"
5497
- },
5498
- fill: {
5499
- value: {
5500
- _light: "#724325",
5501
- _dark: "#663e25"
5502
- }
5503
- },
5504
- stroke: {
5505
- value: {
5506
- _light: "#58341b",
5507
- _dark: "#4e301b"
5508
- }
5509
- }
5510
- },
5511
- blue: {
5512
- hiContrast: {
5513
- value: "{colors.likec4.blue.element.hiContrast}"
5514
- },
5515
- loContrast: {
5516
- value: "{colors.likec4.blue.element.loContrast}"
5517
- },
5518
- fill: {
5519
- value: {
5520
- _light: "#195cc8",
5521
- _dark: "#1e56b1"
5522
- }
5523
- },
5524
- stroke: {
5525
- value: {
5526
- _light: "#1d4aac",
5527
- _dark: "#204698"
5528
- }
5529
- }
5530
- },
5531
- gray: {
5532
- hiContrast: {
5533
- value: "{colors.likec4.gray.element.hiContrast}"
5534
- },
5535
- loContrast: {
5536
- value: "{colors.likec4.gray.element.loContrast}"
5537
- },
5538
- fill: {
5539
- value: {
5540
- _light: "#555555",
5541
- _dark: "#4e4e4e"
5542
- }
5543
- },
5544
- stroke: {
5545
- value: {
5546
- _light: "#3d3d3d",
5547
- _dark: "#383838"
5548
- }
5549
- }
5550
- },
5551
- slate: {
5552
- hiContrast: {
5553
- value: "{colors.likec4.slate.element.hiContrast}"
5554
- },
5555
- loContrast: {
5556
- value: "{colors.likec4.slate.element.loContrast}"
5557
- },
5558
- fill: {
5559
- value: {
5560
- _light: "#4c5665",
5561
- _dark: "#474f5c"
5562
- }
5563
- },
5564
- stroke: {
5565
- value: {
5566
- _light: "#363f4c",
5567
- _dark: "#333a45"
5568
- }
5569
- }
5570
- },
5571
- green: {
5572
- hiContrast: {
5573
- value: "{colors.likec4.green.element.hiContrast}"
5574
- },
5575
- loContrast: {
5576
- value: "{colors.likec4.green.element.loContrast}"
5577
- },
5578
- fill: {
5579
- value: {
5580
- _light: "#35623d",
5581
- _dark: "#325839"
5582
- }
5583
- },
5584
- stroke: {
5585
- value: {
5586
- _light: "#24422c",
5587
- _dark: "#223c29"
5588
- }
5589
- }
5590
- },
5591
- indigo: {
5592
- hiContrast: {
5593
- value: "{colors.likec4.indigo.element.hiContrast}"
5594
- },
5595
- loContrast: {
5596
- value: "{colors.likec4.indigo.element.loContrast}"
5597
- },
5598
- fill: {
5599
- value: {
5600
- _light: "#2428d7",
5601
- _dark: "#282bbf"
5602
- }
5603
- },
5604
- stroke: {
5605
- value: {
5606
- _light: "#3028b5",
5607
- _dark: "#312aa1"
5608
- }
5609
- }
5610
- },
5611
- muted: {
5612
- hiContrast: {
5613
- value: "{colors.likec4.muted.element.hiContrast}"
5614
- },
5615
- loContrast: {
5616
- value: "{colors.likec4.muted.element.loContrast}"
5617
- },
5618
- fill: {
5619
- value: {
5620
- _light: "#4c5665",
5621
- _dark: "#474f5c"
5622
- }
5623
- },
5624
- stroke: {
5625
- value: {
5626
- _light: "#363f4c",
5627
- _dark: "#333a45"
5628
- }
5629
- }
5630
- },
5631
- primary: {
5632
- hiContrast: {
5633
- value: "{colors.likec4.primary.element.hiContrast}"
5634
- },
5635
- loContrast: {
5636
- value: "{colors.likec4.primary.element.loContrast}"
5637
- },
5638
- fill: {
5639
- value: {
5640
- _light: "#195cc8",
5641
- _dark: "#1e56b1"
5642
- }
5643
- },
5644
- stroke: {
5645
- value: {
5646
- _light: "#1d4aac",
5647
- _dark: "#204698"
5648
- }
5649
- }
5650
- },
5651
- red: {
5652
- hiContrast: {
5653
- value: "{colors.likec4.red.element.hiContrast}"
5654
- },
5655
- loContrast: {
5656
- value: "{colors.likec4.red.element.loContrast}"
5657
- },
5658
- fill: {
5659
- value: {
5660
- _light: "#793d31",
5661
- _dark: "#6c3a2f"
5662
- }
5663
- },
5664
- stroke: {
5665
- value: {
5666
- _light: "#5e2e26",
5667
- _dark: "#542c25"
5668
- }
5669
- }
5670
- },
5671
- secondary: {
5672
- hiContrast: {
5673
- value: "{colors.likec4.secondary.element.hiContrast}"
5674
- },
5675
- loContrast: {
5676
- value: "{colors.likec4.secondary.element.loContrast}"
5677
- },
5678
- fill: {
5679
- value: {
5680
- _light: "#0c5e88",
5681
- _dark: "#105579"
5682
- }
5683
- },
5684
- stroke: {
5685
- value: {
5686
- _light: "#0b4b6e",
5687
- _dark: "#0e4462"
5688
- }
5689
- }
5690
- },
5691
- sky: {
5692
- hiContrast: {
5693
- value: "{colors.likec4.sky.element.hiContrast}"
5694
- },
5695
- loContrast: {
5696
- value: "{colors.likec4.sky.element.loContrast}"
5697
- },
5698
- fill: {
5699
- value: {
5700
- _light: "#0c5e88",
5701
- _dark: "#105579"
5702
- }
5703
- },
5704
- stroke: {
5705
- value: {
5706
- _light: "#0b4b6e",
5707
- _dark: "#0e4462"
5708
- }
5709
- }
5710
- }
5711
- },
5712
- compound3: {
5713
- amber: {
5714
- hiContrast: {
5715
- value: "{colors.likec4.amber.element.hiContrast}"
5716
- },
5717
- loContrast: {
5718
- value: "{colors.likec4.amber.element.loContrast}"
5719
- },
5720
- fill: {
5721
- value: {
5722
- _light: "#6b4126",
5723
- _dark: "#5c3a25"
5724
- }
5725
- },
5726
- stroke: {
5727
- value: {
5728
- _light: "#52321c",
5729
- _dark: "#472d1b"
5730
- }
5731
- }
5732
- },
5733
- blue: {
5734
- hiContrast: {
5735
- value: "{colors.likec4.blue.element.hiContrast}"
5736
- },
5737
- loContrast: {
5738
- value: "{colors.likec4.blue.element.loContrast}"
5739
- },
5740
- fill: {
5741
- value: {
5742
- _light: "#1e59ba",
5743
- _dark: "#21519f"
5744
- }
5745
- },
5746
- stroke: {
5747
- value: {
5748
- _light: "#2149a0",
5749
- _dark: "#224289"
5750
- }
5751
- }
5752
- },
5753
- gray: {
5754
- hiContrast: {
5755
- value: "{colors.likec4.gray.element.hiContrast}"
5756
- },
5757
- loContrast: {
5758
- value: "{colors.likec4.gray.element.loContrast}"
5759
- },
5760
- fill: {
5761
- value: {
5762
- _light: "#525252",
5763
- _dark: "#484848"
5764
- }
5765
- },
5766
- stroke: {
5767
- value: {
5768
- _light: "#3a3a3a",
5769
- _dark: "#343434"
5770
- }
5771
- }
5772
- },
5773
- slate: {
5774
- hiContrast: {
5775
- value: "{colors.likec4.slate.element.hiContrast}"
5776
- },
5777
- loContrast: {
5778
- value: "{colors.likec4.slate.element.loContrast}"
5779
- },
5780
- fill: {
5781
- value: {
5782
- _light: "#4a5360",
5783
- _dark: "#424a54"
5784
- }
5785
- },
5786
- stroke: {
5787
- value: {
5788
- _light: "#353d48",
5789
- _dark: "#30363f"
5790
- }
5791
- }
5792
- },
5793
- green: {
5794
- hiContrast: {
5795
- value: "{colors.likec4.green.element.hiContrast}"
5796
- },
5797
- loContrast: {
5798
- value: "{colors.likec4.green.element.loContrast}"
5799
- },
5800
- fill: {
5801
- value: {
5802
- _light: "#345d3c",
5803
- _dark: "#305136"
5804
- }
5805
- },
5806
- stroke: {
5807
- value: {
5808
- _light: "#243e2a",
5809
- _dark: "#213626"
5810
- }
5811
- }
5812
- },
5813
- indigo: {
5814
- hiContrast: {
5815
- value: "{colors.likec4.indigo.element.hiContrast}"
5816
- },
5817
- loContrast: {
5818
- value: "{colors.likec4.indigo.element.loContrast}"
5819
- },
5820
- fill: {
5821
- value: {
5822
- _light: "#292cc8",
5823
- _dark: "#2b2dac"
5824
- }
5825
- },
5826
- stroke: {
5827
- value: {
5828
- _light: "#322ba9",
5829
- _dark: "#312b91"
5830
- }
5831
- }
5832
- },
5833
- muted: {
5834
- hiContrast: {
5835
- value: "{colors.likec4.muted.element.hiContrast}"
5836
- },
5837
- loContrast: {
5838
- value: "{colors.likec4.muted.element.loContrast}"
5839
- },
5840
- fill: {
5841
- value: {
5842
- _light: "#4a5360",
5843
- _dark: "#424a54"
5844
- }
5845
- },
5846
- stroke: {
5847
- value: {
5848
- _light: "#353d48",
5849
- _dark: "#30363f"
5850
- }
5851
- }
5852
- },
5853
- primary: {
5854
- hiContrast: {
5855
- value: "{colors.likec4.primary.element.hiContrast}"
5856
- },
5857
- loContrast: {
5858
- value: "{colors.likec4.primary.element.loContrast}"
5859
- },
5860
- fill: {
5861
- value: {
5862
- _light: "#1e59ba",
5863
- _dark: "#21519f"
5864
- }
5865
- },
5866
- stroke: {
5867
- value: {
5868
- _light: "#2149a0",
5869
- _dark: "#224289"
5870
- }
5871
- }
5872
- },
5873
- red: {
5874
- hiContrast: {
5875
- value: "{colors.likec4.red.element.hiContrast}"
5876
- },
5877
- loContrast: {
5878
- value: "{colors.likec4.red.element.loContrast}"
5879
- },
5880
- fill: {
5881
- value: {
5882
- _light: "#723c31",
5883
- _dark: "#62372e"
5884
- }
5885
- },
5886
- stroke: {
5887
- value: {
5888
- _light: "#582e27",
5889
- _dark: "#4c2a24"
5890
- }
5891
- }
5892
- },
5893
- secondary: {
5894
- hiContrast: {
5895
- value: "{colors.likec4.secondary.element.hiContrast}"
5896
- },
5897
- loContrast: {
5898
- value: "{colors.likec4.secondary.element.loContrast}"
5899
- },
5900
- fill: {
5901
- value: {
5902
- _light: "#10597f",
5903
- _dark: "#134e6c"
5904
- }
5905
- },
5906
- stroke: {
5907
- value: {
5908
- _light: "#0e4767",
5909
- _dark: "#103e57"
5910
- }
5911
- }
5912
- },
5913
- sky: {
5914
- hiContrast: {
5915
- value: "{colors.likec4.sky.element.hiContrast}"
5916
- },
5917
- loContrast: {
5918
- value: "{colors.likec4.sky.element.loContrast}"
5919
- },
5920
- fill: {
5921
- value: {
5922
- _light: "#10597f",
5923
- _dark: "#134e6c"
5924
- }
5925
- },
5926
- stroke: {
5927
- value: {
5928
- _light: "#0e4767",
5929
- _dark: "#103e57"
5930
- }
5931
- }
5932
- }
5933
- },
5934
- compound4: {
5935
- amber: {
5936
- hiContrast: {
5937
- value: "{colors.likec4.amber.element.hiContrast}"
5938
- },
5939
- loContrast: {
5940
- value: "{colors.likec4.amber.element.loContrast}"
5941
- },
5942
- fill: {
5943
- value: {
5944
- _light: "#643e27",
5945
- _dark: "#533624"
5946
- }
5947
- },
5948
- stroke: {
5949
- value: {
5950
- _light: "#4d301d",
5951
- _dark: "#402a1a"
5952
- }
5953
- }
5954
- },
5955
- blue: {
5956
- hiContrast: {
5957
- value: "{colors.likec4.blue.element.hiContrast}"
5958
- },
5959
- loContrast: {
5960
- value: "{colors.likec4.blue.element.loContrast}"
5961
- },
5962
- fill: {
5963
- value: {
5964
- _light: "#2357ad",
5965
- _dark: "#234c8e"
5966
- }
5967
- },
5968
- stroke: {
5969
- value: {
5970
- _light: "#244795",
5971
- _dark: "#243f7a"
5972
- }
5973
- }
5974
- },
5975
- gray: {
5976
- hiContrast: {
5977
- value: "{colors.likec4.gray.element.hiContrast}"
5978
- },
5979
- loContrast: {
5980
- value: "{colors.likec4.gray.element.loContrast}"
5981
- },
5982
- fill: {
5983
- value: {
5984
- _light: "#4e4e4e",
5985
- _dark: "#434343"
5986
- }
5987
- },
5988
- stroke: {
5989
- value: {
5990
- _light: "#383838",
5991
- _dark: "#303030"
5992
- }
5993
- }
5994
- },
5995
- slate: {
5996
- hiContrast: {
5997
- value: "{colors.likec4.slate.element.hiContrast}"
5998
- },
5999
- loContrast: {
6000
- value: "{colors.likec4.slate.element.loContrast}"
6001
- },
6002
- fill: {
6003
- value: {
6004
- _light: "#48505b",
6005
- _dark: "#3e444d"
6006
- }
6007
- },
6008
- stroke: {
6009
- value: {
6010
- _light: "#333a44",
6011
- _dark: "#2d323a"
6012
- }
6013
- }
6014
- },
6015
- green: {
6016
- hiContrast: {
6017
- value: "{colors.likec4.green.element.hiContrast}"
6018
- },
6019
- loContrast: {
6020
- value: "{colors.likec4.green.element.loContrast}"
6021
- },
6022
- fill: {
6023
- value: {
6024
- _light: "#33573a",
6025
- _dark: "#2d4932"
6026
- }
6027
- },
6028
- stroke: {
6029
- value: {
6030
- _light: "#233b29",
6031
- _dark: "#1f3123"
6032
- }
6033
- }
6034
- },
6035
- indigo: {
6036
- hiContrast: {
6037
- value: "{colors.likec4.indigo.element.hiContrast}"
6038
- },
6039
- loContrast: {
6040
- value: "{colors.likec4.indigo.element.loContrast}"
6041
- },
6042
- fill: {
6043
- value: {
6044
- _light: "#2d30ba",
6045
- _dark: "#2c2f99"
6046
- }
6047
- },
6048
- stroke: {
6049
- value: {
6050
- _light: "#342e9e",
6051
- _dark: "#302c82"
6052
- }
6053
- }
6054
- },
6055
- muted: {
6056
- hiContrast: {
6057
- value: "{colors.likec4.muted.element.hiContrast}"
6058
- },
6059
- loContrast: {
6060
- value: "{colors.likec4.muted.element.loContrast}"
6061
- },
6062
- fill: {
6063
- value: {
6064
- _light: "#48505b",
6065
- _dark: "#3e444d"
6066
- }
6067
- },
6068
- stroke: {
6069
- value: {
6070
- _light: "#333a44",
6071
- _dark: "#2d323a"
6072
- }
6073
- }
6074
- },
6075
- primary: {
6076
- hiContrast: {
6077
- value: "{colors.likec4.primary.element.hiContrast}"
6078
- },
6079
- loContrast: {
6080
- value: "{colors.likec4.primary.element.loContrast}"
6081
- },
6082
- fill: {
6083
- value: {
6084
- _light: "#2357ad",
6085
- _dark: "#234c8e"
6086
- }
6087
- },
6088
- stroke: {
6089
- value: {
6090
- _light: "#244795",
6091
- _dark: "#243f7a"
6092
- }
6093
- }
6094
- },
6095
- red: {
6096
- hiContrast: {
6097
- value: "{colors.likec4.red.element.hiContrast}"
6098
- },
6099
- loContrast: {
6100
- value: "{colors.likec4.red.element.loContrast}"
6101
- },
6102
- fill: {
6103
- value: {
6104
- _light: "#6a3b31",
6105
- _dark: "#58342c"
6106
- }
6107
- },
6108
- stroke: {
6109
- value: {
6110
- _light: "#522d27",
6111
- _dark: "#442823"
6112
- }
6113
- }
6114
- },
6115
- secondary: {
6116
- hiContrast: {
6117
- value: "{colors.likec4.secondary.element.hiContrast}"
6118
- },
6119
- loContrast: {
6120
- value: "{colors.likec4.secondary.element.loContrast}"
6121
- },
6122
- fill: {
6123
- value: {
6124
- _light: "#135475",
6125
- _dark: "#154660"
6126
- }
6127
- },
6128
- stroke: {
6129
- value: {
6130
- _light: "#11435f",
6131
- _dark: "#11384e"
6132
- }
6133
- }
6134
- },
6135
- sky: {
6136
- hiContrast: {
6137
- value: "{colors.likec4.sky.element.hiContrast}"
6138
- },
6139
- loContrast: {
6140
- value: "{colors.likec4.sky.element.loContrast}"
6141
- },
6142
- fill: {
6143
- value: {
6144
- _light: "#135475",
6145
- _dark: "#154660"
6146
- }
6147
- },
6148
- stroke: {
6149
- value: {
6150
- _light: "#11435f",
6151
- _dark: "#11384e"
6152
- }
6153
- }
6154
- }
6155
- },
6156
- compound5: {
6157
- amber: {
6158
- hiContrast: {
6159
- value: "{colors.likec4.amber.element.hiContrast}"
6160
- },
6161
- loContrast: {
6162
- value: "{colors.likec4.amber.element.loContrast}"
6163
- },
6164
- fill: {
6165
- value: {
6166
- _light: "#5d3c28",
6167
- _dark: "#493223"
6168
- }
6169
- },
6170
- stroke: {
6171
- value: {
6172
- _light: "#472f1d",
6173
- _dark: "#38261a"
6174
- }
6175
- }
6176
- },
6177
- blue: {
6178
- hiContrast: {
6179
- value: "{colors.likec4.blue.element.hiContrast}"
6180
- },
6181
- loContrast: {
6182
- value: "{colors.likec4.blue.element.loContrast}"
6183
- },
6184
- fill: {
6185
- value: {
6186
- _light: "#2755a0",
6187
- _dark: "#25467d"
6188
- }
6189
- },
6190
- stroke: {
6191
- value: {
6192
- _light: "#27468a",
6193
- _dark: "#243b6c"
6194
- }
6195
- }
6196
- },
6197
- gray: {
6198
- hiContrast: {
6199
- value: "{colors.likec4.gray.element.hiContrast}"
6200
- },
6201
- loContrast: {
6202
- value: "{colors.likec4.gray.element.loContrast}"
6203
- },
6204
- fill: {
6205
- value: {
6206
- _light: "#4b4b4b",
6207
- _dark: "#3d3d3d"
6208
- }
6209
- },
6210
- stroke: {
6211
- value: {
6212
- _light: "#353535",
6213
- _dark: "#2b2b2b"
6214
- }
6215
- }
6216
- },
6217
- slate: {
6218
- hiContrast: {
6219
- value: "{colors.likec4.slate.element.hiContrast}"
6220
- },
6221
- loContrast: {
6222
- value: "{colors.likec4.slate.element.loContrast}"
6223
- },
6224
- fill: {
6225
- value: {
6226
- _light: "#454c56",
6227
- _dark: "#393e46"
6228
- }
6229
- },
6230
- stroke: {
6231
- value: {
6232
- _light: "#323841",
6233
- _dark: "#292e34"
6234
- }
6235
- }
6236
- },
6237
- green: {
6238
- hiContrast: {
6239
- value: "{colors.likec4.green.element.hiContrast}"
6240
- },
6241
- loContrast: {
6242
- value: "{colors.likec4.green.element.loContrast}"
6243
- },
6244
- fill: {
6245
- value: {
6246
- _light: "#335238",
6247
- _dark: "#2b422f"
6248
- }
6249
- },
6250
- stroke: {
6251
- value: {
6252
- _light: "#223728",
6253
- _dark: "#1d2c21"
6254
- }
6255
- }
6256
- },
6257
- indigo: {
6258
- hiContrast: {
6259
- value: "{colors.likec4.indigo.element.hiContrast}"
6260
- },
6261
- loContrast: {
6262
- value: "{colors.likec4.indigo.element.loContrast}"
6263
- },
6264
- fill: {
6265
- value: {
6266
- _light: "#3133ac",
6267
- _dark: "#2d2f87"
6268
- }
6269
- },
6270
- stroke: {
6271
- value: {
6272
- _light: "#363092",
6273
- _dark: "#2f2b73"
6274
- }
6275
- }
6276
- },
6277
- muted: {
6278
- hiContrast: {
6279
- value: "{colors.likec4.muted.element.hiContrast}"
6280
- },
6281
- loContrast: {
6282
- value: "{colors.likec4.muted.element.loContrast}"
6283
- },
6284
- fill: {
6285
- value: {
6286
- _light: "#454c56",
6287
- _dark: "#393e46"
6288
- }
6289
- },
6290
- stroke: {
6291
- value: {
6292
- _light: "#323841",
6293
- _dark: "#292e34"
6294
- }
6295
- }
6296
- },
6297
- primary: {
6298
- hiContrast: {
6299
- value: "{colors.likec4.primary.element.hiContrast}"
6300
- },
6301
- loContrast: {
6302
- value: "{colors.likec4.primary.element.loContrast}"
6303
- },
6304
- fill: {
6305
- value: {
6306
- _light: "#2755a0",
6307
- _dark: "#25467d"
6308
- }
6309
- },
6310
- stroke: {
6311
- value: {
6312
- _light: "#27468a",
6313
- _dark: "#243b6c"
6314
- }
6315
- }
6316
- },
6317
- red: {
6318
- hiContrast: {
6319
- value: "{colors.likec4.red.element.hiContrast}"
6320
- },
6321
- loContrast: {
6322
- value: "{colors.likec4.red.element.loContrast}"
6323
- },
6324
- fill: {
6325
- value: {
6326
- _light: "#633a31",
6327
- _dark: "#4f312a"
6328
- }
6329
- },
6330
- stroke: {
6331
- value: {
6332
- _light: "#4d2c27",
6333
- _dark: "#3d2521"
6334
- }
6335
- }
6336
- },
6337
- secondary: {
6338
- hiContrast: {
6339
- value: "{colors.likec4.secondary.element.hiContrast}"
6340
- },
6341
- loContrast: {
6342
- value: "{colors.likec4.secondary.element.loContrast}"
6343
- },
6344
- fill: {
6345
- value: {
6346
- _light: "#164f6c",
6347
- _dark: "#163f55"
6348
- }
6349
- },
6350
- stroke: {
6351
- value: {
6352
- _light: "#133f58",
6353
- _dark: "#123345"
6354
- }
6355
- }
6356
- },
6357
- sky: {
6358
- hiContrast: {
6359
- value: "{colors.likec4.sky.element.hiContrast}"
6360
- },
6361
- loContrast: {
6362
- value: "{colors.likec4.sky.element.loContrast}"
6363
- },
6364
- fill: {
6365
- value: {
6366
- _light: "#164f6c",
6367
- _dark: "#163f55"
6368
- }
6369
- },
6370
- stroke: {
6371
- value: {
6372
- _light: "#133f58",
6373
- _dark: "#123345"
6374
- }
6375
- }
6376
- }
4682
+ "yellow[9]": {
4683
+ description: "Mantine color yellow.9",
4684
+ value: "var(--mantine-color-yellow-9)"
6377
4685
  }
6378
4686
  }
6379
4687
  }
6380
4688
  }
6381
4689
  };
4690
+ const conditions$1 = {
4691
+ shapeSizeXs: ":where([data-likec4-shape-size='xs']) &",
4692
+ shapeSizeSm: ":where([data-likec4-shape-size='sm']) &",
4693
+ shapeSizeMd: ":where([data-likec4-shape-size='md']) &",
4694
+ shapeSizeLg: ":where([data-likec4-shape-size='lg']) &",
4695
+ shapeSizeXl: ":where([data-likec4-shape-size='xl']) &",
4696
+ shapeRectangle: ":where([data-likec4-shape='rectangle']) &",
4697
+ shapePerson: ":where([data-likec4-shape='person']) &",
4698
+ shapeBrowser: ":where([data-likec4-shape='browser']) &",
4699
+ shapeMobile: ":where([data-likec4-shape='mobile']) &",
4700
+ shapeCylinder: ":where([data-likec4-shape='cylinder']) &",
4701
+ shapeStorage: ":where([data-likec4-shape='storage']) &",
4702
+ shapeQueue: ":where([data-likec4-shape='queue']) &"
4703
+ };
4704
+ const generatedGlobalCss = {
4705
+ ":where([data-likec4-text-size='xs'])": {
4706
+ "--likec4-text-size": "{fontSizes.likec4.xs}"
4707
+ },
4708
+ ":where([data-likec4-text-size='sm'])": {
4709
+ "--likec4-text-size": "{fontSizes.likec4.sm}"
4710
+ },
4711
+ ":where([data-likec4-text-size='md'])": {
4712
+ "--likec4-text-size": "{fontSizes.likec4.md}"
4713
+ },
4714
+ ":where([data-likec4-text-size='lg'])": {
4715
+ "--likec4-text-size": "{fontSizes.likec4.lg}"
4716
+ },
4717
+ ":where([data-likec4-text-size='xl'])": {
4718
+ "--likec4-text-size": "{fontSizes.likec4.xl}"
4719
+ },
4720
+ ":where([data-likec4-spacing='xs'])": {
4721
+ "--likec4-spacing": "{spacing.likec4.xs}"
4722
+ },
4723
+ ":where([data-likec4-spacing='sm'])": {
4724
+ "--likec4-spacing": "{spacing.likec4.sm}"
4725
+ },
4726
+ ":where([data-likec4-spacing='md'])": {
4727
+ "--likec4-spacing": "{spacing.likec4.md}"
4728
+ },
4729
+ ":where([data-likec4-spacing='lg'])": {
4730
+ "--likec4-spacing": "{spacing.likec4.lg}"
4731
+ },
4732
+ ":where([data-likec4-spacing='xl'])": {
4733
+ "--likec4-spacing": "{spacing.likec4.xl}"
4734
+ }
4735
+ };
4736
+ const paletteGlobalVars = {
4737
+ "--likec4-palette-fill": "#3b82f6",
4738
+ "--likec4-palette-stroke": "#2563eb",
4739
+ "--likec4-palette-hiContrast": "#eff6ff",
4740
+ "--likec4-palette-loContrast": "#bfdbfe",
4741
+ "--likec4-palette-relation-stroke": "#3b82f6",
4742
+ "--likec4-palette-relation-label": "#60a5fa",
4743
+ "--likec4-palette-relation-label-bg": "#172554"
4744
+ };
6382
4745
  const conditions = {
6383
4746
  extend: {
4747
+ ...conditions$1,
6384
4748
  light: '[data-mantine-color-scheme="light"] &',
6385
4749
  dark: '[data-mantine-color-scheme="dark"] &',
6386
4750
  notDisabled: "&:not(:is(:disabled, [disabled], [data-disabled]))",
@@ -6409,11 +4773,104 @@ const conditions = {
6409
4773
  whenHovered: ':where([data-likec4-hovered="true"]) &',
6410
4774
  whenSelected: ":where(.react-flow__node.selected, .react-flow__edge.selected) &",
6411
4775
  whenDimmed: ":where([data-likec4-dimmed]) &",
6412
- whenFocused: ":where(.react-flow__node, .react-flow__edge):is(:focus-visible, :focus, :focus-within) &",
4776
+ whenFocused: ":where(.react-flow__node, .react-flow__edge):is(:focus-visible, :focus, :focus-within) &"
6413
4777
  // likec4Color: ':where([data-likec4-color]) &',
6414
- ...conditions$1
6415
4778
  }
6416
4779
  };
4780
+ const globalCss = {
4781
+ extend: {
4782
+ // '@supports ((hanging-punctuation: first) and (font: -apple-system-body) and (-webkit-appearance: none))': {
4783
+ // // TODO: this workaround disables animations in Safari (to improve performance)
4784
+ // ['--likec4-safari-animation-hook']: ' ',
4785
+ // },
4786
+ ":where(:root, :host)": {
4787
+ ["--likec4-app-font-default"]: `'IBM Plex Sans','ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"'`
4788
+ },
4789
+ ".likec4-shadow-root": {
4790
+ display: "contents",
4791
+ "--mantine-font-family": "var(--likec4-app-font, var(--likec4-app-font-default))",
4792
+ "--mantine-font-family-headings": "var(--likec4-app-font, var(--likec4-app-font-default))"
4793
+ },
4794
+ ...generatedGlobalCss
4795
+ }
4796
+ };
4797
+ const globalVars = {
4798
+ extend: {
4799
+ ...paletteGlobalVars,
4800
+ "--likec4-text-size": {
4801
+ syntax: "<length> | <percentage>",
4802
+ inherits: false
4803
+ },
4804
+ "--likec4-spacing": {
4805
+ syntax: "<length> | <percentage>",
4806
+ inherits: false
4807
+ },
4808
+ "--text-fz": {
4809
+ syntax: "<length> | <percentage>",
4810
+ inherits: false
4811
+ },
4812
+ [iconSize]: {
4813
+ syntax: "<length> | <percentage>",
4814
+ inherits: false
4815
+ }
4816
+ }
4817
+ };
4818
+ const layerStyles = defineLayerStyles({
4819
+ likec4: {
4820
+ tag: {
4821
+ description: "LikeC4 tag layer",
4822
+ value: {
4823
+ color: "likec4.tag.text",
4824
+ backgroundColor: "likec4.tag.bg",
4825
+ _hover: {
4826
+ backgroundColor: "likec4.tag.bg.hover"
4827
+ },
4828
+ border: "none",
4829
+ borderRadius: 3
4830
+ }
4831
+ },
4832
+ panel: {
4833
+ description: "LikeC4 panel layer",
4834
+ value: {
4835
+ paddingBlock: "1",
4836
+ paddingInline: "xs",
4837
+ borderRadius: "0",
4838
+ backgroundColor: {
4839
+ base: "likec4.panel.bg",
4840
+ _whenPanning: "likec4.panel.bg.whenPanning"
4841
+ },
4842
+ border: "1px solid {colors.likec4.panel.border}",
4843
+ "@/sm": {
4844
+ boxShadow: "lg",
4845
+ borderRadius: "md",
4846
+ padding: "2xs",
4847
+ backdropFilter: "blur(10px)"
4848
+ },
4849
+ _whenPanning: {
4850
+ boxShadow: "none",
4851
+ borderRadius: "0",
4852
+ backdropFilter: "none"
4853
+ }
4854
+ }
4855
+ },
4856
+ dropdown: {
4857
+ description: "LikeC4 dropdown layer",
4858
+ value: {
4859
+ paddingInline: "2xs",
4860
+ paddingBlock: "2xs",
4861
+ backgroundColor: "likec4.dropdown.bg",
4862
+ border: "1px solid {colors.likec4.dropdown.border}",
4863
+ boxShadow: "lg",
4864
+ borderRadius: "md",
4865
+ _whenPanning: {
4866
+ boxShadow: "none",
4867
+ borderRadius: "0px",
4868
+ borderColor: "transparent"
4869
+ }
4870
+ }
4871
+ }
4872
+ }
4873
+ });
6417
4874
  const patterns = {
6418
4875
  extend: {
6419
4876
  vstack: {
@@ -6437,12 +4894,12 @@ const actionBtn = defineRecipe({
6437
4894
  cursor: "pointer",
6438
4895
  color: "var(--actionbtn-color)",
6439
4896
  opacity: 0.75,
6440
- "--actionbtn-color": "{colors.likec4.palette.loContrast}",
6441
- "--actionbtn-color-hovered": "{colors.likec4.palette.loContrast}",
6442
- "--actionbtn-color-hovered-btn": "{colors.likec4.palette.hiContrast}",
6443
- "--actionbtn-bg-idle": `color-mix(in srgb , {colors.likec4.palette.fill}, transparent 99%)`,
6444
- "--actionbtn-bg-hovered": `color-mix(in srgb , {colors.likec4.palette.fill} 65%, {colors.likec4.palette.stroke})`,
6445
- "--actionbtn-bg-hovered-btn": `color-mix(in srgb , {colors.likec4.palette.fill} 50%, {colors.likec4.palette.stroke})`,
4897
+ "--actionbtn-color": "var(--likec4-palette-loContrast)",
4898
+ "--actionbtn-color-hovered": "var(--likec4-palette-loContrast)",
4899
+ "--actionbtn-color-hovered-btn": "var(--likec4-palette-hiContrast)",
4900
+ "--actionbtn-bg-idle": `color-mix(in srgb , var(--likec4-palette-fill), transparent 99%)`,
4901
+ "--actionbtn-bg-hovered": `color-mix(in srgb , var(--likec4-palette-fill) 65%, var(--likec4-palette-stroke))`,
4902
+ "--actionbtn-bg-hovered-btn": `color-mix(in srgb , var(--likec4-palette-fill) 50%, var(--likec4-palette-stroke))`,
6446
4903
  "--ai-bg": `var(--actionbtn-bg-idle)`,
6447
4904
  background: `var(--ai-bg)`,
6448
4905
  _whenHovered: {
@@ -6503,37 +4960,112 @@ const actionBtn = defineRecipe({
6503
4960
  conditions: ["*"]
6504
4961
  }]
6505
4962
  });
4963
+ const edgeActionBtn = defineRecipe({
4964
+ className: "likec4-edge-action-btn",
4965
+ description: "Action Button within Diagram Edge Label",
4966
+ base: {
4967
+ // zIndex: 'calc(var(--layer-overlays, 1) + 1)',
4968
+ pointerEvents: "all",
4969
+ color: `var(--xy-edge-label-color)`,
4970
+ cursor: "pointer",
4971
+ opacity: 0.75,
4972
+ transition: "fast",
4973
+ translate: "auto",
4974
+ // '--ai-bg': 'var(--xy-edge-label-background-color)',
4975
+ "--ai-bg": "transparent",
4976
+ "--ai-hover": `color-mix(in srgb , var(--xy-edge-label-background-color), {colors.likec4.mixColor} 10%)`,
4977
+ "--ai-size": `var(--ai-size-sm)`,
4978
+ "--ai-radius": `{radii.sm}`,
4979
+ _hover: {
4980
+ translateY: "[2px]",
4981
+ scale: 1.15
4982
+ },
4983
+ _active: {
4984
+ translateY: "[-1px]",
4985
+ scale: "0.9"
4986
+ },
4987
+ _whenHovered: {
4988
+ "--ai-bg": "var(--xy-edge-label-background-color)",
4989
+ opacity: 1
4990
+ },
4991
+ "& .tabler-icon": {
4992
+ width: "80%",
4993
+ height: "80%",
4994
+ strokeWidth: "2"
4995
+ }
4996
+ },
4997
+ variants: {},
4998
+ defaultVariants: {},
4999
+ staticCss: [{
5000
+ conditions: ["*"]
5001
+ }]
5002
+ });
5003
+ const varIconSize = `var(${iconSize})`;
5004
+ const elementNodeIcon = defineRecipe({
5005
+ className: "likec4-element-node-icon",
5006
+ description: "Element Icon displayed in diagram nodes",
5007
+ base: {
5008
+ flex: `0 0 ${varIconSize}`,
5009
+ height: varIconSize,
5010
+ width: varIconSize,
5011
+ display: "flex",
5012
+ alignSelf: "flex-start",
5013
+ alignItems: "center",
5014
+ justifyContent: "center",
5015
+ mixBlendMode: {
5016
+ base: "hard-light",
5017
+ _reduceGraphicsOnPan: "normal"
5018
+ },
5019
+ "& svg, & img": {
5020
+ width: "100%",
5021
+ height: "auto",
5022
+ maxHeight: "100%",
5023
+ pointerEvents: "none",
5024
+ filter: {
5025
+ base: [
5026
+ "drop-shadow(0 0 3px rgb(0 0 0 / 12%))",
5027
+ "drop-shadow(0 1px 8px rgb(0 0 0 / 8%))",
5028
+ "drop-shadow(1px 1px 16px rgb(0 0 0 / 3%))"
5029
+ ],
5030
+ _reduceGraphicsOnPan: "none"
5031
+ }
5032
+ },
5033
+ "& img": {
5034
+ objectFit: "contain"
5035
+ }
5036
+ },
5037
+ staticCss: [{
5038
+ conditions: ["*"]
5039
+ }]
5040
+ });
6506
5041
  const likec4tag = defineRecipe({
6507
5042
  className: "likec4-tag",
6508
5043
  base: {
6509
5044
  pointerEvents: "all",
6510
- display: "flex",
5045
+ display: "inline-flex",
6511
5046
  alignItems: "center",
6512
5047
  justifyContent: "center",
6513
5048
  minWidth: 40,
6514
5049
  width: "min-content",
6515
5050
  transition: "fast",
6516
5051
  fontSize: "xs",
6517
- fontFamily: "var(--likec4-element-font, {fonts.likec4})",
6518
- fontWeight: 500,
6519
- "& > span": {
6520
- display: "inline-block"
6521
- // lineHeight: 1.5,
6522
- },
5052
+ gap: "[1px]",
5053
+ cursor: "default",
5054
+ fontFamily: "likec4.element",
5055
+ fontWeight: "bold",
5056
+ layerStyle: "likec4.tag",
6523
5057
  whiteSpace: "nowrap",
6524
- px: 5,
6525
- border: "none",
6526
- borderRadius: 3,
6527
- backgroundColor: {
6528
- base: "likec4.tag.bg",
6529
- _hover: "likec4.tag.bg.hover"
6530
- }
5058
+ px: "1",
5059
+ py: "0"
6531
5060
  },
6532
5061
  variants: {
6533
5062
  autoTextColor: {
6534
5063
  false: {
6535
5064
  "& > span": {
6536
- color: "likec4.tag.text"
5065
+ color: "likec4.tag.text",
5066
+ _first: {
5067
+ opacity: 0.65
5068
+ }
6537
5069
  }
6538
5070
  },
6539
5071
  true: {
@@ -6563,16 +5095,16 @@ const markdownBlock = defineRecipe({
6563
5095
  pointerEvents: "all",
6564
5096
  "--text-fz": "1rem",
6565
5097
  "--typography-spacing": "calc(0.75 * var(--text-fz) * var(--mantine-scale, 1))",
6566
- "--text-fz-sm": "calc(var(--text-fz) * var(--mantine-scale) / 1.125)",
6567
- "--text-fz-md": "calc(var(--text-fz) * var(--mantine-scale))",
5098
+ "--text-fz-sm": "calc(var(--text-fz) * var(--mantine-scale, 1) / 1.125)",
5099
+ "--text-fz-md": "calc(var(--text-fz) * var(--mantine-scale, 1))",
6568
5100
  "--text-fw-headings": "600",
6569
5101
  paddingBottom: "calc(.5 * var(--typography-spacing) + 1px)",
6570
5102
  fontSize: "var(--text-fz-md)",
6571
5103
  "& :first-child": {
6572
- marginTop: 0
5104
+ marginTop: "0"
6573
5105
  },
6574
5106
  "& :last-child": {
6575
- marginBottom: 0
5107
+ marginBottom: "0"
6576
5108
  },
6577
5109
  "& :where(h1, h2, h3, h4, h5, h6)": {
6578
5110
  lineHeight: "1.5",
@@ -6765,134 +5297,304 @@ const markdownBlock = defineRecipe({
6765
5297
  true: {
6766
5298
  "--typography-spacing": "calc(0.25rem * var(--mantine-scale, 1))",
6767
5299
  "& :where(a)": {
6768
- color: "likec4.palette.fill/45",
5300
+ color: "var(--likec4-palette-fill)/45",
6769
5301
  mixBlendMode: "difference"
6770
5302
  },
6771
5303
  "& :where(code)": {
6772
- borderColor: "likec4.palette.stroke/85",
6773
- color: "likec4.palette.hiContrast",
6774
- backgroundColor: "likec4.palette.stroke/70"
5304
+ borderColor: "var(--likec4-palette-stroke)/85",
5305
+ color: "var(--likec4-palette-loContrast)",
5306
+ backgroundColor: "var(--likec4-palette-stroke)/70"
5307
+ },
5308
+ "& :where(strong)": {
5309
+ color: `color-mix(in srgb , var(--likec4-palette-hiContrast) 50%, var(--likec4-palette-loContrast))`
5310
+ },
5311
+ "& :where(blockquote)": {
5312
+ padding: "2xs",
5313
+ backgroundColor: "var(--likec4-palette-stroke)/65"
5314
+ }
5315
+ },
5316
+ false: {}
5317
+ }
5318
+ },
5319
+ defaultVariants: {
5320
+ uselikec4palette: false
5321
+ },
5322
+ staticCss: [{
5323
+ uselikec4palette: ["*"],
5324
+ conditions: ["*"]
5325
+ }]
5326
+ });
5327
+ const navigationPanelActionIcon = defineRecipe({
5328
+ className: "likec4-navigation-panel-icon",
5329
+ jsx: ["PanelActionIcon"],
5330
+ description: "ActionIcon for navigation panel",
5331
+ base: {
5332
+ color: {
5333
+ base: "likec4.panel.action-icon.text",
5334
+ _disabled: "likec4.panel.action-icon.text.disabled",
5335
+ _notDisabled: {
5336
+ _hover: "likec4.panel.action-icon.text.hover"
5337
+ }
5338
+ },
5339
+ _disabled: {
5340
+ opacity: 0.5
5341
+ }
5342
+ },
5343
+ variants: {
5344
+ variant: {
5345
+ "default": {
5346
+ backgroundColor: {
5347
+ base: "[transparent]",
5348
+ _notDisabled: {
5349
+ _hover: "likec4.panel.action-icon.bg.hover"
5350
+ }
5351
+ }
5352
+ },
5353
+ "filled": {
5354
+ backgroundColor: {
5355
+ base: "likec4.panel.action-icon.bg",
5356
+ _notDisabled: {
5357
+ _hover: "likec4.panel.action-icon.bg.hover"
5358
+ }
5359
+ }
5360
+ }
5361
+ }
5362
+ },
5363
+ defaultVariants: {
5364
+ variant: "default"
5365
+ },
5366
+ staticCss: [{
5367
+ variant: ["*"],
5368
+ conditions: ["*"]
5369
+ }]
5370
+ });
5371
+ const recipes = {
5372
+ __proto__: null,
5373
+ actionBtn,
5374
+ edgeActionBtn,
5375
+ elementNodeIcon,
5376
+ likec4tag,
5377
+ markdownBlock,
5378
+ navigationPanelActionIcon
5379
+ };
5380
+ const semanticTokens = defineSemanticTokens({
5381
+ fontSizes: {
5382
+ likec4: {
5383
+ textSize: {
5384
+ description: "LikeC4 text size",
5385
+ value: "{fontSizes.likec4.md}"
5386
+ }
5387
+ }
5388
+ },
5389
+ colors: {
5390
+ likec4: {
5391
+ background: {
5392
+ DEFAULT: {
5393
+ description: "Background color",
5394
+ value: "{colors.mantine.colors.body}"
5395
+ },
5396
+ pattern: {
5397
+ description: "Background pattern color",
5398
+ value: {
5399
+ _dark: "{colors.mantine.colors.dark[4]/70}",
5400
+ _light: "{colors.mantine.colors.gray[4]}"
5401
+ }
5402
+ }
5403
+ },
5404
+ mixColor: {
5405
+ description: "Color to be used in color-mix",
5406
+ value: {
5407
+ _dark: "white",
5408
+ _light: "black"
5409
+ }
5410
+ },
5411
+ tag: {
5412
+ bg: {
5413
+ DEFAULT: { value: `{colors.tomato.9}` },
5414
+ hover: { value: `{colors.tomato.10}` }
5415
+ },
5416
+ border: {
5417
+ value: `{colors.tomato.8}`
5418
+ },
5419
+ text: {
5420
+ value: `{colors.tomato.12}`
5421
+ }
5422
+ },
5423
+ panel: {
5424
+ bg: {
5425
+ DEFAULT: {
5426
+ description: "LikeC4 panel background color",
5427
+ value: {
5428
+ base: `{colors.mantine.colors.body/90}`,
5429
+ _dark: `{colors.mantine.colors.dark[6]/80}`
5430
+ }
5431
+ },
5432
+ whenPanning: {
5433
+ description: "LikeC4 panel background color when panning",
5434
+ value: {
5435
+ base: `{colors.mantine.colors.body}`,
5436
+ _dark: `{colors.mantine.colors.dark[6]}`
5437
+ }
5438
+ }
6775
5439
  },
6776
- "& :where(strong)": {
6777
- color: `color-mix(in srgb , {colors.likec4.palette.hiContrast} 50%, {colors.likec4.palette.loContrast})`
5440
+ border: {
5441
+ description: "LikeC4 panel border color",
5442
+ value: {
5443
+ base: "transparent",
5444
+ _light: `{colors.mantine.colors.defaultBorder/30}`
5445
+ }
6778
5446
  },
6779
- "& :where(blockquote)": {
6780
- padding: "2xs",
6781
- backgroundColor: "likec4.palette.stroke/65"
5447
+ "action-icon": {
5448
+ text: {
5449
+ DEFAULT: {
5450
+ description: "LikeC4 action icon text color",
5451
+ value: "{colors.mantine.colors.text/70}"
5452
+ },
5453
+ hover: {
5454
+ description: "LikeC4 action icon text color on hover",
5455
+ value: "{colors.mantine.colors.text}"
5456
+ },
5457
+ disabled: {
5458
+ description: "LikeC4 action icon text color when disabled",
5459
+ value: "{colors.mantine.colors.dimmed}"
5460
+ }
5461
+ },
5462
+ bg: {
5463
+ DEFAULT: {
5464
+ description: "LikeC4 action icon background color",
5465
+ value: {
5466
+ base: "{colors.mantine.colors.gray[1]}",
5467
+ _dark: "{colors.mantine.colors.dark[7]/70}"
5468
+ }
5469
+ },
5470
+ hover: {
5471
+ description: "LikeC4 action icon background color on hover",
5472
+ value: {
5473
+ base: "{colors.mantine.colors.gray[2]}",
5474
+ _dark: "{colors.mantine.colors.dark[8]}"
5475
+ }
5476
+ }
5477
+ }
6782
5478
  }
6783
5479
  },
6784
- false: {}
5480
+ dropdown: {
5481
+ bg: {
5482
+ DEFAULT: {
5483
+ description: "LikeC4 dropdown background color",
5484
+ value: {
5485
+ base: `#FFF`,
5486
+ _dark: `{colors.mantine.colors.dark[6]}`
5487
+ }
5488
+ }
5489
+ },
5490
+ border: {
5491
+ description: "LikeC4 dropdown border color",
5492
+ value: "{colors.likec4.panel.border}"
5493
+ }
5494
+ }
6785
5495
  }
6786
- },
6787
- defaultVariants: {
6788
- uselikec4palette: false
6789
- },
6790
- staticCss: [{
6791
- uselikec4palette: ["*"],
6792
- conditions: ["*"]
6793
- }]
5496
+ }
6794
5497
  });
6795
- const navigationPanelActionIcon = defineRecipe({
6796
- className: "likec4-navigation-panel-icon",
6797
- jsx: ["PanelActionIcon"],
6798
- description: "ActionIcon for navigation panel",
5498
+ const edgeLabel = defineSlotRecipe({
5499
+ className: "likec4-edge-label",
5500
+ slots: ["root", "stepNumber", "labelContents", "labelText", "labelTechnology"],
6799
5501
  base: {
6800
- color: {
6801
- base: "likec4.panel.action-icon.text",
6802
- _disabled: "likec4.panel.action-icon.text.disabled",
6803
- _notDisabled: {
6804
- _hover: "likec4.panel.action-icon.text.hover"
5502
+ root: {
5503
+ pointerEvents: "all",
5504
+ fontFamily: "likec4.relation",
5505
+ paddingBlock: "1",
5506
+ paddingInline: "1.5",
5507
+ display: "flex",
5508
+ flexDirection: "column",
5509
+ alignItems: "center",
5510
+ width: "max-content",
5511
+ lineHeight: "[1.2]",
5512
+ maxWidth: "100%",
5513
+ gap: "0.5",
5514
+ color: "var(--xy-edge-label-color)"
5515
+ },
5516
+ stepNumber: {
5517
+ alignSelf: "stretch",
5518
+ flex: "0 0 auto",
5519
+ fontWeight: 600,
5520
+ fontSize: "14px",
5521
+ padding: "1",
5522
+ textAlign: "center",
5523
+ minWidth: "22px",
5524
+ borderTopLeftRadius: "4px",
5525
+ borderBottomLeftRadius: "4px",
5526
+ background: `[color-mix(in srgb, var(--likec4-palette-relation-label-bg), {colors.likec4.mixColor} 10%)]`,
5527
+ fontVariantNumeric: "tabular-nums",
5528
+ // _dark: {
5529
+ [':where([data-likec4-color="gray"]) &']: {
5530
+ _dark: {
5531
+ background: `[color-mix(in srgb, var(--likec4-palette-relation-label-bg), {colors.likec4.mixColor} 15%)]`
5532
+ }
6805
5533
  }
6806
5534
  },
6807
- _disabled: {
6808
- opacity: 0.5
5535
+ labelContents: {
5536
+ display: "contents",
5537
+ _empty: {
5538
+ display: "none !important"
5539
+ }
5540
+ },
5541
+ labelText: {
5542
+ whiteSpaceCollapse: "preserve-breaks",
5543
+ fontSize: "14px",
5544
+ margin: "0"
5545
+ },
5546
+ labelTechnology: {
5547
+ textAlign: "center",
5548
+ whiteSpaceCollapse: "preserve-breaks",
5549
+ fontSize: "11px",
5550
+ lineHeight: "[1]",
5551
+ opacity: 0.75
6809
5552
  }
6810
5553
  },
6811
5554
  variants: {
6812
- variant: {
6813
- "default": {
6814
- backgroundColor: {
6815
- base: "[transparent]",
6816
- _notDisabled: {
6817
- _hover: "likec4.panel.action-icon.bg.hover"
6818
- }
6819
- }
6820
- },
6821
- "filled": {
6822
- backgroundColor: {
6823
- base: "likec4.panel.action-icon.bg",
6824
- _notDisabled: {
6825
- _hover: "likec4.panel.action-icon.bg.hover"
6826
- }
5555
+ isStepEdge: {
5556
+ false: {},
5557
+ true: {
5558
+ root: {
5559
+ flexDirection: "row",
5560
+ gap: "1",
5561
+ padding: "0"
5562
+ },
5563
+ labelContents: {
5564
+ display: "flex",
5565
+ flexDirection: "column",
5566
+ alignItems: "center",
5567
+ paddingTop: "0.5",
5568
+ paddingRight: "1",
5569
+ paddingBottom: "1",
5570
+ gap: "0.5"
5571
+ },
5572
+ labelText: {
5573
+ py: "0.5",
5574
+ paddingRight: "0.5"
6827
5575
  }
6828
5576
  }
6829
5577
  }
6830
5578
  },
6831
5579
  defaultVariants: {
6832
- variant: "default"
6833
- },
6834
- staticCss: [{
6835
- variant: ["*"],
6836
- conditions: ["*"]
6837
- }]
6838
- });
6839
- const varIconSize = `var(${iconSize})`;
6840
- const elementNodeIcon = defineRecipe({
6841
- className: "likec4-element-node-icon",
6842
- description: "Element Icon displayed in diagram nodes",
6843
- base: {
6844
- flex: `0 0 ${varIconSize}`,
6845
- height: varIconSize,
6846
- width: varIconSize,
6847
- display: "flex",
6848
- alignSelf: "flex-start",
6849
- alignItems: "center",
6850
- justifyContent: "center",
6851
- mixBlendMode: {
6852
- base: "hard-light",
6853
- _reduceGraphicsOnPan: "normal"
6854
- },
6855
- "& svg, & img": {
6856
- width: "100%",
6857
- height: "auto",
6858
- maxHeight: "100%",
6859
- pointerEvents: "none",
6860
- filter: {
6861
- base: [
6862
- "drop-shadow(0 0 3px rgb(0 0 0 / 12%))",
6863
- "drop-shadow(0 1px 8px rgb(0 0 0 / 8%))",
6864
- "drop-shadow(1px 1px 16px rgb(0 0 0 / 3%))"
6865
- ],
6866
- _reduceGraphicsOnPan: "none"
6867
- }
6868
- },
6869
- "& img": {
6870
- objectFit: "contain"
6871
- }
5580
+ isStepEdge: false
6872
5581
  },
6873
5582
  staticCss: [{
6874
- conditions: ["*"]
5583
+ conditions: ["*"],
5584
+ isStepEdge: ["*"]
6875
5585
  }]
6876
5586
  });
6877
- const recipes = {
6878
- __proto__: null,
6879
- actionBtn,
6880
- elementNodeIcon,
6881
- likec4tag,
6882
- markdownBlock,
6883
- navigationPanelActionIcon
6884
- };
6885
5587
  const title = {
6886
5588
  textStyle: "likec4.node.primary",
6887
5589
  flex: "0 0 auto",
6888
5590
  textAlign: "center",
6889
- color: "likec4.palette.hiContrast"
5591
+ color: "var(--likec4-palette-hiContrast)"
6890
5592
  };
6891
5593
  const description = {
6892
5594
  flexGrow: "0",
6893
5595
  flexShrink: "1",
6894
5596
  textStyle: "likec4.node.secondary",
6895
- color: "likec4.palette.loContrast",
5597
+ color: "var(--likec4-palette-loContrast)",
6896
5598
  textAlign: "center",
6897
5599
  textOverflow: "ellipsis",
6898
5600
  overflow: "hidden",
@@ -6906,7 +5608,7 @@ const description = {
6906
5608
  const technology = {
6907
5609
  flex: "0 0 auto",
6908
5610
  textStyle: "likec4.node.secondary",
6909
- color: "likec4.palette.loContrast",
5611
+ color: "var(--likec4-palette-loContrast)",
6910
5612
  fontSize: `calc(var(--likec4-text-size) * 0.635)`,
6911
5613
  lineHeight: 1.125,
6912
5614
  textAlign: "center",
@@ -6936,7 +5638,7 @@ const elementNodeData = defineSlotRecipe({
6936
5638
  width: "fit-content",
6937
5639
  maxHeight: "100%",
6938
5640
  maxWidth: "100%",
6939
- margin: "0 auto",
5641
+ margin: "[0 auto]",
6940
5642
  display: "flex",
6941
5643
  alignItems: "center",
6942
5644
  justifyContent: "center",
@@ -6947,24 +5649,24 @@ const elementNodeData = defineSlotRecipe({
6947
5649
  paddingRight: "calc(var(--likec4-spacing) + 8px)",
6948
5650
  overflow: "hidden",
6949
5651
  pointerEvents: "none",
6950
- gap: "12px",
5652
+ gap: "3",
6951
5653
  _shapeQueue: {
6952
- paddingLeft: "46px",
6953
- paddingRight: "16px"
5654
+ paddingLeft: "[46px]",
5655
+ paddingRight: "[16px]"
6954
5656
  },
6955
5657
  _shapeMobile: {
6956
- paddingLeft: "46px",
6957
- paddingRight: "16px"
5658
+ paddingLeft: "[46px]",
5659
+ paddingRight: "[16px]"
6958
5660
  },
6959
5661
  _shapeCylinder: {
6960
- paddingTop: "30px"
5662
+ paddingTop: "[30px]"
6961
5663
  },
6962
5664
  _shapeStorage: {
6963
- paddingTop: "30px"
5665
+ paddingTop: "[30px]"
6964
5666
  },
6965
5667
  _shapeBrowser: {
6966
- paddingTop: "32px",
6967
- paddingBottom: "28px"
5668
+ paddingTop: "[32px]",
5669
+ paddingBottom: "[28px]"
6968
5670
  },
6969
5671
  _shapeSizeXs: {
6970
5672
  [iconSize]: "24px"
@@ -6977,11 +5679,11 @@ const elementNodeData = defineSlotRecipe({
6977
5679
  },
6978
5680
  _shapeSizeLg: {
6979
5681
  [iconSize]: "82px",
6980
- gap: "16px"
5682
+ gap: "4"
6981
5683
  },
6982
5684
  _shapeSizeXl: {
6983
5685
  [iconSize]: "90px",
6984
- gap: "16px"
5686
+ gap: "4"
6985
5687
  }
6986
5688
  },
6987
5689
  textContainer: {
@@ -7063,7 +5765,7 @@ const navigationLink = defineSlotRecipe({
7063
5765
  root: {
7064
5766
  rounded: "sm",
7065
5767
  px: "xs",
7066
- py: "2xs",
5768
+ py: "xxs",
7067
5769
  backgroundColor: {
7068
5770
  _hover: {
7069
5771
  "&:not([data-active])": {
@@ -7074,247 +5776,94 @@ const navigationLink = defineSlotRecipe({
7074
5776
  }
7075
5777
  },
7076
5778
  body: {
7077
- gap: "2",
5779
+ gap: "0.5",
7078
5780
  display: "flex",
7079
5781
  flexDirection: "column"
7080
5782
  },
7081
5783
  section: {
7082
5784
  '&:where([data-position="left"])': {
7083
- marginInlineEnd: "2xs"
5785
+ marginInlineEnd: "xxs"
7084
5786
  // alignSelf: 'flex-start',
7085
5787
  }
7086
5788
  },
7087
5789
  label: {
7088
- display: "block",
7089
- fontSize: "sm",
7090
- fontWeight: "500",
7091
- lineHeight: 1.2
7092
- },
7093
- description: {
7094
- display: "block",
7095
- fontSize: "xxs",
7096
- lineHeight: 1.2
7097
- }
7098
- },
7099
- variants: {
7100
- truncateLabel: {
7101
- "true": {
7102
- label: {
7103
- width: "100%",
7104
- truncate: true
7105
- },
7106
- description: {
7107
- width: "100%",
7108
- truncate: true
7109
- }
7110
- },
7111
- "false": {}
7112
- }
7113
- },
7114
- defaultVariants: {
7115
- truncateLabel: false
7116
- },
7117
- staticCss: [{
7118
- truncateLabel: ["*"],
7119
- conditions: ["*"]
7120
- }]
7121
- });
7122
- const slotRecipes = {
7123
- __proto__: null,
7124
- elementNodeData,
7125
- navigationLink
7126
- };
7127
- const layerStyles = defineLayerStyles({
7128
- likec4: {
7129
- tag: {
7130
- description: "LikeC4 tag layer",
7131
- value: {
7132
- color: "likec4.tag.text",
7133
- backgroundColor: "likec4.tag.bg",
7134
- _hover: {
7135
- backgroundColor: "likec4.tag.bg.hover"
7136
- },
7137
- border: "none",
7138
- borderRadius: 3
7139
- }
7140
- },
7141
- panel: {
7142
- description: "LikeC4 panel layer",
7143
- value: {
7144
- paddingInline: "xs",
7145
- paddingBlock: "2xs",
7146
- backgroundColor: {
7147
- base: "likec4.panel.bg",
7148
- _whenPanning: "likec4.panel.bg.whenPanning"
7149
- },
7150
- boxShadow: "lg",
7151
- border: "1px solid {colors.likec4.panel.border}",
7152
- borderRadius: "md",
7153
- backdropFilter: "blur(10px)",
7154
- _whenPanning: {
7155
- boxShadow: "none",
7156
- borderRadius: 0
7157
- },
7158
- smDown: {
7159
- padding: "4",
7160
- borderRadius: 0
7161
- }
7162
- }
7163
- },
7164
- dropdown: {
7165
- description: "LikeC4 dropdown layer",
7166
- value: {
7167
- paddingInline: "2xs",
7168
- paddingBlock: "2xs",
7169
- backgroundColor: "likec4.dropdown.bg",
7170
- border: "1px solid {colors.likec4.dropdown.border}",
7171
- boxShadow: "lg",
7172
- borderRadius: "md",
7173
- _whenPanning: {
7174
- boxShadow: "none",
7175
- borderRadius: "0px",
7176
- borderColor: "transparent"
7177
- }
7178
- }
7179
- }
7180
- }
7181
- });
7182
- const semanticTokens = defineSemanticTokens({
7183
- fontSizes: {
7184
- likec4: {
7185
- textSize: {
7186
- description: "LikeC4 text size",
7187
- value: "{fontSizes.likec4.md}"
7188
- }
5790
+ display: "block",
5791
+ fontSize: "sm",
5792
+ fontWeight: "500",
5793
+ lineHeight: 1.2
5794
+ },
5795
+ description: {
5796
+ display: "block",
5797
+ fontSize: "xxs",
5798
+ lineHeight: 1.2
7189
5799
  }
7190
5800
  },
7191
- colors: {
7192
- likec4: {
7193
- background: {
7194
- DEFAULT: {
7195
- description: "Background color",
7196
- value: "{colors.mantine.colors.body}"
7197
- },
7198
- pattern: {
7199
- description: "Background pattern color",
7200
- value: {
7201
- base: "{colors.mantine.colors.dark[5]}",
7202
- _light: "{colors.mantine.colors.gray[4]}"
7203
- }
7204
- }
7205
- },
7206
- mixColor: {
7207
- description: "Color to be used in color-mix",
7208
- value: {
7209
- _dark: "white",
7210
- _light: "black"
7211
- }
7212
- },
7213
- tag: {
7214
- bg: {
7215
- DEFAULT: { value: `{colors.tomato.9}` },
7216
- hover: { value: `{colors.tomato.10}` }
7217
- },
7218
- border: {
7219
- value: `{colors.tomato.8}`
7220
- },
7221
- text: {
7222
- value: `{colors.tomato.12}`
7223
- }
7224
- },
7225
- palette: {
7226
- DEFAULT: { value: `var(--likec4-palette,'likec4.primary')` },
7227
- fill: { value: "{colors.likec4.primary.element.fill}" },
7228
- stroke: { value: "{colors.likec4.primary.element.stroke}" },
7229
- hiContrast: { value: "{colors.likec4.primary.element.hiContrast}" },
7230
- loContrast: { value: "{colors.likec4.primary.element.loContrast}" }
7231
- },
7232
- relation: {
7233
- stroke: {
7234
- DEFAULT: { value: "{colors.likec4.gray.relation.stroke}" },
7235
- selected: { value: "{colors.likec4.gray.relation.stroke.selected}" }
7236
- },
5801
+ variants: {
5802
+ truncateLabel: {
5803
+ "true": {
7237
5804
  label: {
7238
- DEFAULT: { value: "{colors.likec4.gray.relation.label}" },
7239
- bg: { value: "{colors.likec4.gray.relation.label.bg}" }
7240
- }
7241
- },
7242
- panel: {
7243
- bg: {
7244
- DEFAULT: {
7245
- description: "LikeC4 panel background color",
7246
- value: {
7247
- base: `{colors.mantine.colors.body/90}`,
7248
- _dark: `{colors.mantine.colors.dark[6]/80}`
7249
- }
7250
- },
7251
- whenPanning: {
7252
- description: "LikeC4 panel background color when panning",
7253
- value: {
7254
- base: `{colors.mantine.colors.body}`,
7255
- _dark: `{colors.mantine.colors.dark[6]}`
7256
- }
7257
- }
7258
- },
7259
- border: {
7260
- description: "LikeC4 panel border color",
7261
- value: {
7262
- base: "transparent",
7263
- _light: `{colors.mantine.colors.defaultBorder/30}`
7264
- }
5805
+ width: "100%",
5806
+ truncate: true
7265
5807
  },
7266
- "action-icon": {
7267
- text: {
7268
- DEFAULT: {
7269
- description: "LikeC4 action icon text color",
7270
- value: "{colors.mantine.colors.text/70}"
7271
- },
7272
- hover: {
7273
- description: "LikeC4 action icon text color on hover",
7274
- value: "{colors.mantine.colors.text}"
7275
- },
7276
- disabled: {
7277
- description: "LikeC4 action icon text color when disabled",
7278
- value: "{colors.mantine.colors.dimmed}"
7279
- }
7280
- },
7281
- bg: {
7282
- DEFAULT: {
7283
- description: "LikeC4 action icon background color",
7284
- value: {
7285
- base: "{colors.mantine.colors.gray[1]}",
7286
- _dark: "{colors.mantine.colors.dark[7]/70}"
7287
- }
7288
- },
7289
- hover: {
7290
- description: "LikeC4 action icon background color on hover",
7291
- value: {
7292
- base: "{colors.mantine.colors.gray[2]}",
7293
- _dark: "{colors.mantine.colors.dark[8]}"
7294
- }
7295
- }
7296
- }
5808
+ description: {
5809
+ width: "100%",
5810
+ truncate: true
7297
5811
  }
7298
5812
  },
7299
- dropdown: {
7300
- bg: {
7301
- DEFAULT: {
7302
- description: "LikeC4 dropdown background color",
7303
- value: {
7304
- base: `#FFF`,
7305
- _dark: `{colors.mantine.colors.dark[6]}`
7306
- }
7307
- }
7308
- },
7309
- border: {
7310
- description: "LikeC4 dropdown border color",
7311
- value: "{colors.likec4.panel.border}"
7312
- }
7313
- }
5813
+ "false": {}
7314
5814
  }
7315
- }
5815
+ },
5816
+ defaultVariants: {
5817
+ truncateLabel: false
5818
+ },
5819
+ staticCss: [{
5820
+ truncateLabel: ["*"],
5821
+ conditions: ["*"]
5822
+ }]
7316
5823
  });
5824
+ const slotRecipes = {
5825
+ __proto__: null,
5826
+ edgeLabel,
5827
+ elementNodeData,
5828
+ navigationLink
5829
+ };
7317
5830
  const textStyles = defineTextStyles({
5831
+ xxs: {
5832
+ value: {
5833
+ fontSize: "0.625rem",
5834
+ lineHeight: "1rem"
5835
+ }
5836
+ },
5837
+ xs: {
5838
+ value: {
5839
+ fontSize: "0.75rem",
5840
+ lineHeight: "1rem"
5841
+ }
5842
+ },
5843
+ sm: {
5844
+ value: {
5845
+ fontSize: "0.875rem",
5846
+ lineHeight: "1.25rem"
5847
+ }
5848
+ },
5849
+ md: {
5850
+ value: {
5851
+ fontSize: "1rem",
5852
+ lineHeight: "1.5rem"
5853
+ }
5854
+ },
5855
+ lg: {
5856
+ value: {
5857
+ fontSize: "1.125rem",
5858
+ lineHeight: "1.75rem"
5859
+ }
5860
+ },
5861
+ xl: {
5862
+ value: {
5863
+ fontSize: "1.25rem",
5864
+ lineHeight: "1.75rem"
5865
+ }
5866
+ },
7318
5867
  likec4: {
7319
5868
  node: {
7320
5869
  primary: {
@@ -7343,7 +5892,9 @@ const textStyles = defineTextStyles({
7343
5892
  }
7344
5893
  });
7345
5894
  const tokens = defineTokens({
5895
+ ...tokens$1,
7346
5896
  lineHeights: {
5897
+ ...tokens$1.lineHeights,
7347
5898
  "1": {
7348
5899
  value: "1"
7349
5900
  }
@@ -7354,26 +5905,124 @@ const tokens = defineTokens({
7354
5905
  default: { value: "1px solid {colors.mantine.colors.defaultBorder}" }
7355
5906
  },
7356
5907
  spacing: {
5908
+ ...tokens$1.spacing,
7357
5909
  "0": {
5910
+ description: "Non-scalable spacing value - 0px",
7358
5911
  value: "0px"
7359
5912
  },
7360
- "2": {
5913
+ "0.5": {
5914
+ description: "Non-scalable spacing value - (0.5 * 4px)",
7361
5915
  value: "2px"
7362
5916
  },
7363
- "4": {
5917
+ "1": {
5918
+ description: "Non-scalable spacing value - (1 * 4px)",
7364
5919
  value: "4px"
7365
5920
  },
7366
- "micro": {
7367
- value: "4px"
5921
+ "1.5": {
5922
+ description: "Non-scalable spacing value - (1.5 * 4px)",
5923
+ value: "6px"
7368
5924
  },
7369
- "2xs": {
5925
+ "2": {
5926
+ description: "Non-scalable spacing value - (2 * 4px)",
7370
5927
  value: "8px"
7371
5928
  },
5929
+ "2.5": {
5930
+ description: "Non-scalable spacing value - (2.5 * 4px)",
5931
+ value: "10px"
5932
+ },
5933
+ "3": {
5934
+ description: "Non-scalable spacing value - (3 * 4px)",
5935
+ value: "12px"
5936
+ },
5937
+ "3.5": {
5938
+ description: "Non-scalable spacing value - (3.5 * 4px)",
5939
+ value: "14px"
5940
+ },
5941
+ "4": {
5942
+ description: "Non-scalable spacing value - (4 * 4px)",
5943
+ value: "16px"
5944
+ },
5945
+ "4.5": {
5946
+ description: "Non-scalable spacing value - (4.5 * 4px)",
5947
+ value: "18px"
5948
+ },
5949
+ "5": {
5950
+ description: "Non-scalable spacing value - (5 * 4px)",
5951
+ value: "20px"
5952
+ },
5953
+ "6": {
5954
+ description: "Non-scalable spacing value - (6 * 4px)",
5955
+ value: "24px"
5956
+ },
5957
+ "7": {
5958
+ description: "Non-scalable spacing value - (7 * 4px)",
5959
+ value: "28px"
5960
+ },
7372
5961
  "8": {
7373
- value: "8px"
5962
+ description: "Non-scalable spacing value - (8 * 4px)",
5963
+ value: "32px"
5964
+ },
5965
+ "9": {
5966
+ description: "Non-scalable spacing value - (9 * 4px)",
5967
+ value: "36px"
5968
+ },
5969
+ "10": {
5970
+ description: "Non-scalable spacing value - (10 * 4px)",
5971
+ value: "40px"
5972
+ },
5973
+ xxs: {
5974
+ description: "Scalable spacing value - (0.5rem * var(--scale)) (8px)",
5975
+ value: "calc(0.5rem * var(--mantine-scale))"
5976
+ // 8px
5977
+ },
5978
+ xs: {
5979
+ description: "Scalable spacing value - (0.625rem * var(--scale)) (10px)",
5980
+ value: "calc(0.625rem * var(--mantine-scale))"
5981
+ // 10px
5982
+ },
5983
+ sm: {
5984
+ description: "Scalable spacing value - (0.75rem * var(--scale)) (12px)",
5985
+ value: "calc(0.75rem * var(--mantine-scale))"
5986
+ // 12px
5987
+ },
5988
+ md: {
5989
+ description: "Scalable spacing value - (1rem * var(--scale)) (16px)",
5990
+ value: "calc(1rem * var(--mantine-scale))"
5991
+ // 16px
5992
+ },
5993
+ lg: {
5994
+ description: "Scalable spacing value - (1.25rem * var(--scale)) (20px)",
5995
+ value: "calc(1.25rem * var(--mantine-scale))"
5996
+ // 20px
5997
+ },
5998
+ xl: {
5999
+ description: "Scalable spacing value - (2rem * var(--scale)) (32px)",
6000
+ value: "calc(2rem * var(--mantine-scale))"
6001
+ // 32px
6002
+ }
6003
+ },
6004
+ radii: {
6005
+ 0: {
6006
+ value: "0px"
6007
+ },
6008
+ xs: {
6009
+ value: "0.125rem"
6010
+ },
6011
+ sm: {
6012
+ value: "0.25rem"
6013
+ },
6014
+ md: {
6015
+ value: "0.5rem"
6016
+ },
6017
+ lg: {
6018
+ value: "1rem"
6019
+ },
6020
+ xl: {
6021
+ value: "2rem"
7374
6022
  }
7375
6023
  },
7376
6024
  colors: {
6025
+ ...tokens$1.colors,
7377
6026
  // For typesafety, otherwise wrap with []
7378
6027
  transparent: { value: "transparent" }
7379
6028
  },
@@ -7410,124 +6059,110 @@ const tokens = defineTokens({
7410
6059
  slow: { value: "300ms" },
7411
6060
  slower: { value: "400ms" },
7412
6061
  slowest: { value: "500ms" }
7413
- }
7414
- });
7415
- const theme = {
7416
- ...theme$1,
7417
- extend: {
7418
- textStyles,
7419
- layerStyles,
7420
- tokens,
7421
- semanticTokens,
7422
- recipes,
7423
- slotRecipes,
7424
- keyframes: {
7425
- "indicatorStrokeOpacity": {
7426
- "0%": {
7427
- strokeOpacity: 0.8
7428
- },
7429
- "100%": {
7430
- strokeOpacity: 0.4
7431
- }
7432
- },
7433
- "xyedgeAnimated": {
7434
- "0%": {
7435
- strokeDashoffset: 18 * 2 + 10
7436
- },
7437
- "100%": {
7438
- strokeDashoffset: 10
7439
- }
7440
- }
6062
+ },
6063
+ shadows: {
6064
+ none: { value: "none" },
6065
+ xs: {
6066
+ value: "0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1)"
7441
6067
  },
7442
- animationStyles: {
7443
- "indicator": {
7444
- value: {
7445
- animationDuration: "1s",
7446
- animationIterationCount: "infinite",
7447
- animationDirection: "alternate",
7448
- animationName: "indicatorStrokeOpacity"
7449
- }
7450
- },
7451
- "xyedgeAnimated": {
7452
- value: {
7453
- animationDuration: "800ms",
7454
- animationIterationCount: "infinite",
7455
- animationTimingFunction: "linear",
7456
- animationFillMode: "both",
7457
- animationName: "xyedgeAnimated"
7458
- }
7459
- }
7460
- }
7461
- }
7462
- };
7463
- const colorPaletteValues = [
7464
- ...themeColors,
7465
- ...compoundColors
7466
- ];
7467
- const likec4Palette = defineUtility({
7468
- values: colorPaletteValues,
7469
- className: "likec4-palette",
7470
- // @ts-expect-error
7471
- property: "--likec4-palette",
7472
- transform(value, { token }) {
7473
- if (!colorPaletteValues.includes(value)) {
7474
- throw new Error(`Invalid value "${value}" for likec4ColorPalette`);
7475
- }
7476
- const [color, depth] = value.split(".");
7477
- if (depth) {
7478
- return {
7479
- ["--likec4-palette"]: `'likec4.compound${depth}.${color}'`,
7480
- ["--colors-likec4-palette-hi-contrast"]: token(`colors.likec4.compound${depth}.${color}.hiContrast`),
7481
- ["--colors-likec4-palette-lo-contrast"]: token(`colors.likec4.compound${depth}.${color}.loContrast`),
7482
- ["--colors-likec4-palette-fill"]: token(`colors.likec4.compound${depth}.${color}.fill`),
7483
- ["--colors-likec4-palette-stroke"]: token(`colors.likec4.compound${depth}.${color}.stroke`)
7484
- };
7485
- } else {
7486
- return {
7487
- ["--likec4-palette"]: `'likec4.${color}'`,
7488
- ["--colors-likec4-palette-fill"]: token(`colors.likec4.${color}.element.fill`),
7489
- ["--colors-likec4-palette-stroke"]: token(`colors.likec4.${color}.element.stroke`),
7490
- ["--colors-likec4-palette-hi-contrast"]: token(`colors.likec4.${color}.element.hiContrast`),
7491
- ["--colors-likec4-palette-lo-contrast"]: token(`colors.likec4.${color}.element.loContrast`)
7492
- };
7493
- }
7494
- }
7495
- });
7496
- const likec4RelationPalette = defineUtility({
7497
- values: themeColors,
7498
- className: "likec4-relation-color",
7499
- transform(value, { token, raw }) {
7500
- if (!themeColors.includes(value)) {
7501
- console.log("raw", raw);
7502
- throw new Error(`Invalid value "${value}" for likec4RelationPalette`);
6068
+ sm: {
6069
+ value: "0 1px 3px rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 0 10px 15px -5px, rgba(0, 0, 0, 0.04) 0 7px 7px -5px"
6070
+ },
6071
+ md: {
6072
+ value: "0 1px 3px rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 0 20px 25px -5px, rgba(0, 0, 0, 0.04) 0 10px 10px -5px"
6073
+ },
6074
+ lg: {
6075
+ value: "0 1px 3px rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 0 28px 23px -7px, rgba(0, 0, 0, 0.04) 0 12px 12px -7px"
6076
+ },
6077
+ xl: {
6078
+ value: "0 1px 3px rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 0 36px 28px -7px, rgba(0, 0, 0, 0.04) 0 17px 17px -7px"
7503
6079
  }
7504
- return {
7505
- ["--likec4-palette"]: `'likec4.${value}'`,
7506
- ["--colors-likec4-relation-stroke"]: token(`colors.likec4.${value}.relation.stroke`),
7507
- ["--colors-likec4-relation-stroke-selected"]: token(`colors.likec4.${value}.relation.stroke.selected`),
7508
- ["--colors-likec4-relation-label"]: token(`colors.likec4.${value}.relation.label`),
7509
- ["--colors-likec4-relation-label-bg"]: token(`colors.likec4.${value}.relation.label.bg`)
7510
- };
7511
6080
  }
7512
6081
  });
6082
+ const durationValues = [
6083
+ "fastest",
6084
+ "faster",
6085
+ "fast",
6086
+ "normal",
6087
+ "slow",
6088
+ "slower",
6089
+ "slowest",
6090
+ "none"
6091
+ ];
7513
6092
  const utilities = {
7514
6093
  extend: {
7515
6094
  transition: {
7516
- values: ["fast"],
7517
- className: "transition-fast",
6095
+ values: durationValues,
6096
+ className: "transition",
7518
6097
  transform(value, { token }) {
7519
- if (value !== "fast") {
6098
+ if (value === "none") {
6099
+ return {
6100
+ transition: "none"
6101
+ };
6102
+ }
6103
+ if (!durationValues.includes(value)) {
7520
6104
  return {
7521
6105
  transition: value
7522
6106
  };
7523
6107
  }
7524
6108
  return {
7525
- transition: `all ${token("durations.fast")} ${token("easings.inOut")}`
6109
+ transition: `all ${token(`durations.${value}`)} ${token("easings.inOut")}`
7526
6110
  };
7527
6111
  }
6112
+ }
6113
+ }
6114
+ };
6115
+ const theme = {
6116
+ breakpoints,
6117
+ textStyles,
6118
+ layerStyles,
6119
+ tokens,
6120
+ semanticTokens,
6121
+ recipes,
6122
+ slotRecipes,
6123
+ containerNames: ["likec4-root", "likec4-dialog"],
6124
+ containerSizes: {
6125
+ xs: "384px",
6126
+ sm: "640px",
6127
+ md: "768px",
6128
+ lg: "1024px"
6129
+ },
6130
+ keyframes: {
6131
+ "indicatorStrokeOpacity": {
6132
+ "0%": {
6133
+ strokeOpacity: 0.8
6134
+ },
6135
+ "100%": {
6136
+ strokeOpacity: 0.4
6137
+ }
7528
6138
  },
7529
- likec4Palette,
7530
- likec4RelationPalette
6139
+ "xyedgeAnimated": {
6140
+ "0%": {
6141
+ strokeDashoffset: 18 * 2 + 10
6142
+ },
6143
+ "100%": {
6144
+ strokeDashoffset: 10
6145
+ }
6146
+ }
6147
+ },
6148
+ animationStyles: {
6149
+ "indicator": {
6150
+ value: {
6151
+ animationDuration: "1s",
6152
+ animationIterationCount: "infinite",
6153
+ animationDirection: "alternate",
6154
+ animationName: "indicatorStrokeOpacity"
6155
+ }
6156
+ },
6157
+ "xyedgeAnimated": {
6158
+ value: {
6159
+ animationDuration: "800ms",
6160
+ animationIterationCount: "infinite",
6161
+ animationTimingFunction: "linear",
6162
+ animationFillMode: "both",
6163
+ animationName: "xyedgeAnimated"
6164
+ }
6165
+ }
7531
6166
  }
7532
6167
  };
7533
6168
  const index = definePreset({
@@ -7545,104 +6180,19 @@ const index = definePreset({
7545
6180
  colorScales: radixColors
7546
6181
  })
7547
6182
  ],
7548
- globalVars: {
7549
- extend: {
7550
- "--likec4-palette": {
7551
- syntax: "*",
7552
- inherits: false
7553
- // initialValue: `'likec4.primary'`,
7554
- },
7555
- "--likec4-text-size": {
7556
- syntax: "<length-percentage>",
7557
- inherits: false
7558
- // initialValue: '1rem',
7559
- },
7560
- "--likec4-spacing": {
7561
- syntax: "<length-percentage>",
7562
- inherits: false
7563
- // initialValue: '1rem',
7564
- },
7565
- [iconSize]: {
7566
- syntax: "<length-percentage>",
7567
- inherits: false
7568
- // initialValue: '1rem',
7569
- }
7570
- }
7571
- },
7572
- globalCss: {
7573
- extend: {
7574
- // '@supports ((hanging-punctuation: first) and (font: -apple-system-body) and (-webkit-appearance: none))': {
7575
- // // TODO: this workaround disables animations in Safari (to improve performance)
7576
- // ['--likec4-safari-animation-hook']: ' ',
7577
- // },
7578
- ":where(:host, :root)": {
7579
- ["--likec4-app-font-default"]: `'IBM Plex Sans','ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"'`
7580
- },
7581
- ".likec4-shadow-root": {
7582
- display: "contents",
7583
- "--mantine-font-family": "var(--likec4-app-font, var(--likec4-app-font-default))",
7584
- "--mantine-font-family-headings": "var(--likec4-app-font, var(--likec4-app-font-default))"
7585
- },
7586
- [`${root}`]: {
7587
- overflow: "hidden",
7588
- position: "relative",
7589
- width: "100%",
7590
- height: "100%",
7591
- padding: "0px",
7592
- margin: "0px",
7593
- border: "0px solid transparent",
7594
- containerName: "likec4-root",
7595
- containerType: "size"
7596
- },
7597
- [`${root} .react-flow:is(.not-initialized)`]: {
7598
- opacity: 0
7599
- },
7600
- [`:where(${root} .mantine-ActionIcon-icon) .tabler-icon`]: {
7601
- width: "75%",
7602
- height: "75%"
7603
- },
7604
- [`${root} ${nodeOrEdge}:has([data-likec4-dimmed])`]: {
7605
- opacity: 0.25
7606
- },
7607
- [`${rootNotReduced} ${nodeOrEdge}:has([data-likec4-dimmed])`]: {
7608
- filter: "auto",
7609
- grayscale: 0.85,
7610
- blur: "3px"
7611
- },
7612
- [`${rootNotReduced} ${nodeOrEdge}:has([data-likec4-dimmed="true"])`]: {
7613
- transitionProperty: "opacity, filter",
7614
- transitionTimingFunction: "{easings.inOut}",
7615
- transitionDuration: "600ms"
7616
- // transitionDelay: '100ms',
7617
- },
7618
- [`[data-mantine-color-scheme="dark"] ${rootNotReduced} :where(.react-flow__edges, .react-flow__edgelabel-renderer) > svg`]: {
7619
- mixBlendMode: "plus-lighter"
7620
- },
7621
- [`[data-mantine-color-scheme="light"] ${rootNotReduced} :where(.react-flow__edges, .react-flow__edgelabel-renderer) > svg`]: {
7622
- mixBlendMode: "screen"
7623
- },
7624
- ...globalCss
7625
- }
7626
- },
6183
+ globalVars,
6184
+ globalCss,
7627
6185
  staticCss: {
7628
6186
  extend: {
7629
- themes: ["light", "dark"],
7630
- css: [{
7631
- properties: {
7632
- color: [
7633
- "likec4.palette.hiContrast",
7634
- "likec4.palette.loContrast"
7635
- ],
7636
- likec4Palette: [...themeColors, ...compoundColors],
7637
- likec4RelationPalette: themeColors
7638
- }
7639
- }]
6187
+ themes: ["light", "dark"]
7640
6188
  }
7641
6189
  },
7642
6190
  conditions,
7643
6191
  patterns,
7644
6192
  utilities,
7645
- theme
6193
+ theme: {
6194
+ extend: theme
6195
+ }
7646
6196
  });
7647
6197
 
7648
6198
  export { index as default, theme };