fission-theme 0.3.0

Design tokens, Design System Package codegen output, and component themes for Fission
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
{
  "$schema": "https://design-tokens.github.io/community-group/format/",
  "$comment": "Fluent 2 Design System Package preset for Fission. It maps the public visual language into Fission DSP tokens and components; product teams can copy and customize it.",
  "$package": {
    "name": "fluent-2",
    "version": "0.2.0",
    "description": "Fission preset that reproduces Microsoft Fluent 2-style color, typography, radius, elevation, and component density.",
    "license": "MIT",
    "framework": {
      "name": "fission",
      "repository": "https://github.com/worka-ai/fission",
      "theme_crate": "crates/core/fission-theme"
    },
    "structure": {
      "tokens_format": "W3C Design Tokens (with $ref-style references)",
      "component_format": "anatomy + sizes + hierarchies + states (per-property)",
      "files": {
        "tokens": "tokens.json — primitive design tokens (color, type, spacing, radius, elevation, motion)",
        "css_mirror": "colors_and_type.css — CSS-variable mirror of tokens",
        "assets": "assets/ — logos, marks, brand glyphs",
        "fonts": "fonts/ — Inter font family"
      }
    },
    "sources": [
      "https://fluent2.microsoft.design/"
    ]
  },
  "brand": {
    "$comment": "Fission brand identity at the meta level.",
    "name": "Fluent 2",
    "tagline": "Calm, dense productivity UI.",
    "long_description": "Fission preset that reproduces Microsoft Fluent 2-style color, typography, radius, elevation, and component density.",
    "voice": {
      "register": "technical, precise, deterministic",
      "person": "second person (you) for developer-facing; third person for runtime behavior; avoid first person plural (we)",
      "casing": "sentence case for headings; Title Case only for brand and product names; code identifiers preserve source casing",
      "tone_examples": [
        "Plain Rust data stays in charge. Product truth is not hidden inside widgets or host callbacks.",
        "Every durable change has a named cause.",
        "Fission is strict about where state changes happen, where host work starts, and how rendering is produced.",
        "Start where your evaluation needs the most signal."
      ],
      "forbidden_words": [
        "blazingly fast",
        "revolutionary",
        "supercharged",
        "unleash",
        "game-changing",
        "synergy"
      ],
      "emoji_policy": "not used",
      "punctuation_notes": "em-dash (—) used liberally as separator/aside; arrows (→) for CTA hints"
    },
    "logo": {
      "wordmark_dark": {
        "path": "assets/fission-logo.png",
        "background": "dark",
        "format": "png"
      },
      "wordmark_light": {
        "path": null,
        "$status": "MISSING — request from brand owner"
      },
      "mark": {
        "path": "assets/fission-mark.svg",
        "background": "any",
        "format": "svg",
        "description": "Two crossed elliptical orbits — blue and orange — around an orange nucleus."
      }
    }
  },
  "tokens": {
    "$comment": "Primitive design tokens. The complete machine-readable spec lives in tokens.json. This block summarises the structure; reference tokens.json for exhaustive values.",
    "$ref": "./tokens.json",
    "namespaces": [
      {
        "name": "color.brand",
        "purpose": "Fluent 2 semantic tokens for Fission theme generation."
      },
      {
        "name": "color.teal",
        "purpose": "Interactive primary palette. Light: 700; Dark: 400; Focus: 500."
      },
      {
        "name": "color.slate",
        "purpose": "Neutral ramp (matches Tailwind slate-*)."
      },
      {
        "name": "color.semantic",
        "purpose": "Status: success, warning, error, info."
      },
      {
        "name": "color.light",
        "purpose": "Semantic surface tokens for the light theme."
      },
      {
        "name": "color.dark",
        "purpose": "Semantic surface tokens for the dark theme."
      },
      {
        "name": "typography",
        "purpose": "Inter (sans), serif fallback (Iowan/Palatino/Georgia), SF Mono (mono). UUI Display/Text scale."
      },
      {
        "name": "spacing",
        "purpose": "9-step scale: 0/4/8/16/24/32/48/64/96."
      },
      {
        "name": "radius",
        "purpose": "7-step scale: 0/4/8/12/16/24/9999."
      },
      {
        "name": "elevation",
        "purpose": "Box shadows. 5 levels + focus."
      },
      {
        "name": "motion",
        "purpose": "Duration scale + easing curves."
      }
    ]
  },
  "components": {
    "$comment": "Each component declares anatomy (named slots), sizes, hierarchies (visual variants), and states. Property values reference tokens via {namespace.path} or contain literal CSS values. Sourced from the Untitled UI Figma component matrix and bound to Fission's teal palette.",
    "button": {
      "$source": "Figma /Buttons/Buttons-Button (node 3287:427074)",
      "$description": "Button component styled for the Fluent 2 preset.",
      "anatomy": [
        "leading_icon?",
        "label",
        "trailing_icon?"
      ],
      "radius": "4px",
      "font_family": "{typography.font_family.sans}",
      "font_weight": "{typography.font_weight.semibold}",
      "transition": "background {motion.duration.fast} {motion.easing.standard}, box-shadow {motion.duration.fast} {motion.easing.standard}, border-color {motion.duration.fast} {motion.easing.standard}, color {motion.duration.fast} {motion.easing.standard}",
      "icon_size": "20px",
      "sizes": {
        "sm": {
          "height": "32px",
          "padding_x": "12px",
          "gap": "4px",
          "font_size": "14px",
          "line_height": "20px"
        },
        "md": {
          "height": "40px",
          "padding_x": "16px",
          "gap": "4px",
          "font_size": "14px",
          "line_height": "20px"
        },
        "lg": {
          "height": "44px",
          "padding_x": "20px",
          "gap": "6px",
          "font_size": "16px",
          "line_height": "24px"
        },
        "xl": {
          "height": "48px",
          "padding_x": "24px",
          "gap": "6px",
          "font_size": "16px",
          "line_height": "24px"
        }
      },
      "hierarchies": {
        "primary": {
          "default": {
            "background": "{color.light.primary}",
            "color": "{color.light.on_primary}",
            "border": "none",
            "box_shadow": "0 1px 2px 0 rgba(10,13,18,0.05), inset 0 0 0 1px rgba(0,0,0,0.18)"
          },
          "hover": {
            "background": "{color.light.primary_hover}"
          },
          "active": {
            "background": "{color.light.primary_hover}"
          },
          "focus": {
            "box_shadow": "{elevation.focus}"
          },
          "disabled": {
            "background": "{color.light.surface_sunken}",
            "color": "{color.light.text_muted}",
            "box_shadow": "none",
            "cursor": "not-allowed"
          }
        },
        "secondary_color": {
          "default": {
            "background": "{color.light.surface}",
            "color": "{color.light.primary}",
            "border": "1px solid {color.light.primary_subtle}",
            "box_shadow": "0 1px 2px 0 rgba(10,13,18,0.05)"
          },
          "hover": {
            "background": "{color.light.primary_subtle}",
            "color": "{color.light.primary_hover}"
          },
          "active": {
            "background": "{color.light.primary_subtle}"
          }
        },
        "secondary_gray": {
          "default": {
            "background": "{color.light.surface}",
            "color": "{color.light.text_primary}",
            "border": "1px solid {color.light.border}",
            "box_shadow": "0 1px 2px 0 rgba(10,13,18,0.05)"
          },
          "hover": {
            "background": "{color.light.surface_sunken}",
            "color": "{color.light.text_primary}"
          },
          "active": {
            "background": "{color.light.surface_sunken}"
          }
        },
        "tertiary_color": {
          "default": {
            "background": "transparent",
            "color": "{color.light.primary}",
            "border": "none"
          },
          "hover": {
            "background": "{color.light.primary_subtle}",
            "color": "{color.light.primary_hover}"
          }
        },
        "tertiary_gray": {
          "default": {
            "background": "transparent",
            "color": "{color.light.text_secondary}",
            "border": "none"
          },
          "hover": {
            "background": "{color.light.surface_sunken}",
            "color": "{color.light.text_primary}"
          }
        },
        "link_color": {
          "default": {
            "background": "transparent",
            "color": "{color.light.primary}",
            "border": "none",
            "padding_x": "0",
            "height": "auto"
          },
          "hover": {
            "color": "{color.light.primary_hover}",
            "text_decoration": "underline"
          }
        },
        "link_gray": {
          "default": {
            "background": "transparent",
            "color": "{color.light.text_secondary}",
            "border": "none",
            "padding_x": "0",
            "height": "auto"
          },
          "hover": {
            "color": "{color.light.text_primary}",
            "text_decoration": "underline"
          }
        },
        "destructive": {
          "$source": "Figma /Buttons/Buttons-Button-destructive",
          "default": {
            "background": "{color.semantic.error}",
            "color": "#FFFFFF",
            "box_shadow": "0 1px 2px 0 rgba(10,13,18,0.05), inset 0 0 0 1px rgba(0,0,0,0.18)"
          },
          "hover": {
            "background": "#BE123C"
          },
          "active": {
            "background": "#9F1239"
          }
        }
      },
      "css_classes": [
        "fs-btn",
        "fs-btn--{size}",
        "fs-btn--{hierarchy}"
      ]
    },
    "input": {
      "$source": "Figma /Inputs/Input + /Inputs/Input-field",
      "$description": "Text input component styled for the Fluent 2 preset.",
      "anatomy": [
        "label?",
        "leading_icon?",
        "input",
        "trailing_icon?",
        "helper_text?",
        "error_text?"
      ],
      "radius": "4px",
      "font_family": "{typography.font_family.sans}",
      "font_size": "16px",
      "line_height": "24px",
      "sizes": {
        "sm": {
          "height": "36px",
          "padding_x": "12px"
        },
        "md": {
          "height": "40px",
          "padding_x": "12px"
        }
      },
      "states": {
        "default": {
          "background": "{color.light.surface}",
          "border": "1px solid {color.light.border}",
          "color": "{color.light.text_primary}",
          "box_shadow": "0 1px 2px 0 rgba(10,13,18,0.05)"
        },
        "placeholder": {
          "color": "{color.light.text_muted}"
        },
        "focus": {
          "border": "2px solid {color.light.primary}",
          "box_shadow": "{elevation.focus}",
          "padding_x": "11px",
          "$comment": "padding shrinks by 1px to compensate for the doubled border so the field doesn't jump"
        },
        "error": {
          "border": "1px solid {color.light.error}",
          "$helper_color": "{color.light.error}"
        },
        "disabled": {
          "background": "{color.light.surface_sunken}",
          "color": "{color.light.text_secondary}",
          "cursor": "not-allowed"
        }
      },
      "label": {
        "font_size": "14px",
        "font_weight": 500,
        "color": "{color.light.text_primary}",
        "margin_bottom": "6px"
      },
      "helper_text": {
        "font_size": "14px",
        "color": "{color.light.text_muted}",
        "margin_top": "6px"
      },
      "css_classes": [
        "fs-input"
      ]
    },
    "card": {
      "$description": "Card surface styled for the Fluent 2 preset.",
      "anatomy": [
        "leading_media?",
        "header",
        "body",
        "footer?"
      ],
      "radius": "8px",
      "border": "1px solid {color.light.border}",
      "background": "{color.light.surface}",
      "padding": "{spacing.l}",
      "patterns": {
        "plain": {
          "background": "{color.light.surface}",
          "border": "1px solid {color.light.border}",
          "box_shadow": "none"
        },
        "raised": {
          "background": "{color.light.surface}",
          "border": "1px solid {color.light.border}",
          "box_shadow": "{elevation.level2}"
        },
        "tinted": {
          "background": "{color.teal.50}",
          "border": "1px solid {color.teal.200}",
          "box_shadow": "none"
        },
        "elevated": {
          "background": "{color.light.surface}",
          "border": "1px solid {color.light.border}",
          "box_shadow": "{elevation.level1}"
        }
      },
      "interaction": {
        "hover": {
          "box_shadow": "{elevation.level2}",
          "$comment": "Only when card is interactive (a link or button surface)."
        }
      }
    },
    "badge": {
      "$source": "Figma /Badges/Badge (1046:3819) — Size=md, Type=Pill color",
      "$description": "Inline status pill. Lightest brand tint background + tinted border + brand-700 text.",
      "anatomy": [
        "leading_dot?",
        "label",
        "leading_avatar?",
        "trailing_x?"
      ],
      "sizes": {
        "sm": {
          "height": "20px",
          "padding_x": "8px",
          "font_size": "12px",
          "line_height": "18px"
        },
        "md": {
          "height": "24px",
          "padding_x": "10px",
          "font_size": "14px",
          "line_height": "20px"
        }
      },
      "radius": "{radius.full}",
      "font_family": "{typography.font_family.sans}",
      "font_weight": "{typography.font_weight.medium}",
      "colors": {
        "brand": {
          "background": "{color.teal.50}",
          "border": "1px solid {color.teal.200}",
          "color": "{color.teal.700}"
        },
        "gray": {
          "background": "{color.slate.50}",
          "border": "1px solid {color.slate.200}",
          "color": "{color.slate.700}"
        },
        "success": {
          "background": "#ECFDF5",
          "border": "1px solid #A7F3D0",
          "color": "#027A48"
        },
        "warning": {
          "background": "#FFFAEB",
          "border": "1px solid #FEDF89",
          "color": "#B54708"
        },
        "error": {
          "background": "#FEF3F2",
          "border": "1px solid #FECDCA",
          "color": "#B42318"
        },
        "blue": {
          "background": "{color.brand.blue.50}",
          "border": "1px solid #A8D0F2",
          "color": "{color.brand.blue.600}"
        },
        "orange": {
          "background": "{color.brand.orange.50}",
          "border": "1px solid #FACBA0",
          "color": "{color.brand.orange.700}"
        }
      },
      "css_classes": [
        "fs-badge",
        "fs-badge--{color}"
      ]
    },
    "tabs": {
      "$source": "Figma /Tabs/Horizontal-tabs",
      "$description": "Underline tabs — bottom border with 2px active indicator in brand color. (Type=Underline)",
      "anatomy": [
        "tab[]"
      ],
      "tab_anatomy": [
        "label",
        "leading_icon?",
        "trailing_count?"
      ],
      "sizes": {
        "sm": {
          "padding_y": "10px",
          "font_size": "14px",
          "indicator_height": "2px"
        },
        "md": {
          "padding_y": "12px",
          "font_size": "14px",
          "indicator_height": "2px"
        }
      },
      "track": {
        "border_bottom": "1px solid {color.light.border}"
      },
      "states": {
        "default": {
          "color": "{color.slate.500}",
          "border_bottom": "2px solid transparent"
        },
        "hover": {
          "color": "{color.slate.700}"
        },
        "active": {
          "color": "{color.teal.700}",
          "border_bottom": "2px solid {color.teal.700}",
          "font_weight": 600
        }
      },
      "variants_available": [
        "underline",
        "button_brand",
        "button_gray",
        "button_border"
      ]
    },
    "progress_bar": {
      "$source": "Figma /Progress-indicators/Progress-bar (1085:57382)",
      "$description": "Horizontal progress indicator. Track + fill, both rounded-full.",
      "anatomy": [
        "track",
        "fill",
        "label?"
      ],
      "height": "8px",
      "radius": "{radius.full}",
      "track": {
        "background": "{color.slate.200}"
      },
      "fill": {
        "background": "{color.teal.700}"
      },
      "label_patterns": {
        "right": {
          "layout": "row",
          "label_position": "right",
          "label_min_width": "32px"
        },
        "bottom": {
          "layout": "column",
          "label_position": "bottom_end"
        }
      }
    },
    "feature_icon": {
      "$source": "Figma /Misc-icons/Featured-icon",
      "$description": "Pill icon container used as visual anchor for feature blocks, list items, target rows.",
      "anatomy": [
        "icon"
      ],
      "sizes": {
        "md": {
          "size": "40px",
          "radius": "{radius.medium}",
          "icon_size": "20px"
        },
        "lg": {
          "size": "48px",
          "radius": "10px",
          "icon_size": "24px"
        },
        "xl": {
          "size": "56px",
          "radius": "12px",
          "icon_size": "28px"
        }
      },
      "tones": {
        "brand": {
          "background": "{color.teal.50}",
          "color": "{color.teal.700}",
          "border": "1px solid {color.teal.100}"
        },
        "gray": {
          "background": "{color.slate.50}",
          "color": "{color.slate.700}",
          "border": "1px solid {color.slate.200}"
        },
        "blue": {
          "background": "{color.brand.blue.50}",
          "color": "{color.brand.blue.600}",
          "border": "1px solid #D5E8F8"
        },
        "orange": {
          "background": "{color.brand.orange.50}",
          "color": "{color.brand.orange.700}",
          "border": "1px solid #FDE8D2"
        }
      },
      "box_shadow": "0 1px 2px rgba(10,13,18,0.05)",
      "css_classes": [
        "fs-feature-icon",
        "fs-feature-icon--{tone}"
      ]
    },
    "modal": {
      "$source": "Fission ModalTheme (fission-theme/src/lib.rs)",
      "anatomy": [
        "scrim",
        "container",
        "header",
        "body",
        "footer?"
      ],
      "radius": "8px",
      "background": "{color.light.surface}",
      "max_width": "600px",
      "box_shadow": "{elevation.level3}",
      "scrim": {
        "background": "rgba(15,23,42,0.6)",
        "backdrop_filter": "blur(4px)"
      }
    },
    "tooltip": {
      "$source": "Fission TooltipTheme",
      "anatomy": [
        "bubble",
        "arrow?"
      ],
      "radius": "2px",
      "background": "{color.slate.900}",
      "color": "#FFFFFF",
      "font_size": "12px",
      "padding": "8px 10px",
      "max_width": "240px",
      "box_shadow": "{elevation.level2}"
    },
    "kicker_eyebrow": {
      "$description": "Small uppercase label above section titles.",
      "font_size": "14px",
      "font_weight": 600,
      "color": "{color.teal.700}",
      "letter_spacing": "0",
      "text_transform": "none",
      "$variant_uppercase": {
        "text_transform": "uppercase",
        "letter_spacing": "{typography.letter_spacing.kicker}",
        "font_size": "12px"
      }
    }
  },
  "patterns": {
    "$comment": "Composition patterns — proven layouts the design system endorses.",
    "marketing_hero": {
      "$description": "Centered hero: pill announcement → display-lg headline → text-xl lead → CTA row → command panel grid.",
      "max_width": "1280px",
      "padding": "96px 32px 80px",
      "alignment": "center",
      "components": [
        "pill_announcement",
        "display_lg_headline",
        "text_xl_lead",
        "cta_row",
        "command_panel_grid_2col"
      ]
    },
    "marketing_features_4up": {
      "$description": "4-column feature grid: feature_icon → 18px heading → text-md body.",
      "grid": "repeat(4, minmax(0, 1fr))",
      "gap": "{spacing.xl}",
      "section_padding": "80px 0"
    },
    "marketing_target_rail": {
      "$description": "Vertical list of target rows in a single bordered card: feature_icon + name+badge+summary + command + link button.",
      "container": "card.elevated, radius xl, 1px border, overflow hidden",
      "row_height_min": "80px",
      "row_columns": "auto minmax(0, 1fr) minmax(280px, 0.9fr) auto"
    },
    "marketing_examples_3up": {
      "$description": "3-column product cards with screenshot, badge, title, command, body, feature tags, and dual CTAs.",
      "grid": "repeat(3, minmax(0, 1fr))",
      "gap": "{spacing.l}",
      "card_screenshot_aspect": "16 / 10"
    },
    "marketing_cta_strip_dark": {
      "$description": "Final-call section on slate-950 with teal/blue radial-gradient overlays. Centered headline + 2 CTAs.",
      "background": "radial-gradient(circle at 20% 0%, rgba(45,212,191,0.12), transparent 50%), radial-gradient(circle at 80% 100%, rgba(77,166,224,0.10), transparent 55%), {color.slate.950}"
    },
    "form_field_stack": {
      "$description": "Vertical stack for a form field: label → input → helper or error text.",
      "gap": "6px",
      "elements": [
        "label",
        "input",
        "helper_text"
      ]
    }
  },
  "assets": {
    "$comment": "Brand assets shipped with this package.",
    "logos": [
      {
        "id": "wordmark.dark",
        "path": "assets/fission-logo.png",
        "format": "png",
        "background": "dark",
        "dimensions": "1242x1242"
      },
      {
        "id": "mark.full_color",
        "path": "assets/fission-mark.svg",
        "format": "svg",
        "background": "any",
        "dimensions": "200x200"
      }
    ],
    "fonts": [
      {
        "family": "Inter",
        "weight": 400,
        "style": "normal",
        "path": "fonts/Inter-Regular.ttf",
        "format": "truetype"
      },
      {
        "family": "Inter",
        "weight": 500,
        "style": "normal",
        "path": "fonts/Inter-Medium.ttf",
        "format": "truetype"
      },
      {
        "family": "Inter",
        "weight": 600,
        "style": "normal",
        "path": "fonts/Inter-SemiBold.ttf",
        "format": "truetype"
      },
      {
        "family": "Inter",
        "weight": 700,
        "style": "normal",
        "path": "fonts/Inter-Bold.ttf",
        "format": "truetype"
      }
    ],
    "iconography": {
      "$comment": "Material Symbols Rounded — the same set bundled by fission-icons.",
      "set": "material-symbols-rounded",
      "weight": 400,
      "optical_size": 24,
      "fill": 0,
      "grad": 0,
      "cdn": "https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@24,400,0,0",
      "rust_source": "https://github.com/worka-ai/material-design-icons"
    }
  },
  "data_visualization": {
    "$description": "Default qualitative chart palette used by Fission charts when an app does not provide a chart-specific palette.",
    "palette": [
      "#0F6CBD",
      "#5C2E91",
      "#498205",
      "#C50F1F",
      "#F7630C",
      "#038387",
      "#8764B8",
      "#0078D4"
    ]
  },
  "preview": {
    "$comment": "Static HTML cards used by the design system review UI. Each card is ~700px wide, height varies.",
    "cards": [
      {
        "asset": "Brand · Logo",
        "group": "Brand",
        "path": "preview/brand-logo.html"
      },
      {
        "asset": "Brand · Atom mark",
        "group": "Brand",
        "path": "preview/brand-mark.html"
      },
      {
        "asset": "Colors · Teal interactive",
        "group": "Colors",
        "path": "preview/colors-teal.html"
      },
      {
        "asset": "Colors · Brand signal (logo)",
        "group": "Colors",
        "path": "preview/colors-brand-signal.html"
      },
      {
        "asset": "Colors · Slate neutrals",
        "group": "Colors",
        "path": "preview/colors-slate.html"
      },
      {
        "asset": "Colors · Semantic status",
        "group": "Colors",
        "path": "preview/colors-semantic.html"
      },
      {
        "asset": "Colors · Light surface tokens",
        "group": "Colors",
        "path": "preview/colors-light-surface.html"
      },
      {
        "asset": "Colors · Dark surface tokens",
        "group": "Colors",
        "path": "preview/colors-dark-surface.html"
      },
      {
        "asset": "Type · Display serif",
        "group": "Type",
        "path": "preview/type-display.html"
      },
      {
        "asset": "Type · Sans scale",
        "group": "Type",
        "path": "preview/type-sans-scale.html"
      },
      {
        "asset": "Type · Mono / code",
        "group": "Type",
        "path": "preview/type-mono.html"
      },
      {
        "asset": "Type · Semantic classes",
        "group": "Type",
        "path": "preview/type-semantic.html"
      },
      {
        "asset": "Spacing · Scale",
        "group": "Spacing",
        "path": "preview/spacing-scale.html"
      },
      {
        "asset": "Spacing · Radius scale",
        "group": "Spacing",
        "path": "preview/spacing-radius.html"
      },
      {
        "asset": "Spacing · Elevation",
        "group": "Spacing",
        "path": "preview/spacing-elevation.html"
      },
      {
        "asset": "Spacing · Motion",
        "group": "Spacing",
        "path": "preview/spacing-motion.html"
      },
      {
        "asset": "Components · Buttons",
        "group": "Components",
        "path": "preview/comp-buttons.html"
      },
      {
        "asset": "Components · Inputs",
        "group": "Components",
        "path": "preview/comp-inputs.html"
      },
      {
        "asset": "Components · Card",
        "group": "Components",
        "path": "preview/comp-card.html"
      },
      {
        "asset": "Components · Badges & tags",
        "group": "Components",
        "path": "preview/comp-badges-tags.html"
      },
      {
        "asset": "Components · Tabs & progress",
        "group": "Components",
        "path": "preview/comp-tabs-progress.html"
      },
      {
        "asset": "Components · Iconography",
        "group": "Components",
        "path": "preview/comp-icons.html"
      },
      {
        "asset": "Components · CTA strip",
        "group": "Components",
        "path": "preview/comp-cta-pattern.html"
      },
      {
        "asset": "Fission documentation site",
        "group": "Components",
        "path": "ui_kits/documentation-site/index.html"
      }
    ]
  },
  "sources": [
    {
      "name": "Fluent 2",
      "url": "https://fluent2.microsoft.design/"
    }
  ]
}