|
| 1 | +namespace MaterialTheming.Tests.KnownTestThemes.CMF; |
| 2 | + |
| 3 | +internal class DarkMode_HighContrast_Spec2026_Magenta : ITestTheme |
| 4 | +{ |
| 5 | + public string SourceColor => "#E85DAE"; //Magenta |
| 6 | + public bool IsDark => true; |
| 7 | + public Variant Variant => Variant.CMF; |
| 8 | + public double ContrastLevelValue => 1.0; |
| 9 | + public SpecVersion SpecVersion => SpecVersion.Spec2026; |
| 10 | + |
| 11 | + // Primary |
| 12 | + public string Primary => "#FFDCEA"; |
| 13 | + public string OnPrimary => "#5A003D"; |
| 14 | + public string PrimaryContainer => "#FF71C2"; |
| 15 | + public string OnPrimaryContainer => "#000000"; |
| 16 | + // Secondary |
| 17 | + public string Secondary => "#FFDCEA"; |
| 18 | + public string OnSecondary => "#4C1A37"; |
| 19 | + public string SecondaryContainer => "#D58FB1"; |
| 20 | + public string OnSecondaryContainer => "#000000"; |
| 21 | + // Tertiary |
| 22 | + public string Tertiary => "#FFDCEA"; |
| 23 | + public string OnTertiary => "#59033D"; |
| 24 | + public string TertiaryContainer => "#EB81BA"; |
| 25 | + public string OnTertiaryContainer => "#000000"; |
| 26 | + // Error |
| 27 | + public string Error => "#FFDEDB"; |
| 28 | + public string OnError => "#600008"; |
| 29 | + public string ErrorContainer => "#FF7C74"; |
| 30 | + public string OnErrorContainer => "#000000"; |
| 31 | + // Surface |
| 32 | + public string Surface => "#190911"; |
| 33 | + public string SurfaceVariant => "#3B1B2C"; |
| 34 | + public string OnSurface => "#FFFFFF"; |
| 35 | + public string OnSurfaceVariant => "#FFDCEA"; |
| 36 | + public string SurfaceDim => "#190911"; |
| 37 | + public string SurfaceBright => "#422133"; |
| 38 | + public string SurfaceTint => "#FFDCEA"; |
| 39 | + // Background |
| 40 | + public string Background => "#190911"; |
| 41 | + public string OnBackground => "#FFFFFF"; |
| 42 | + // Outline |
| 43 | + public string Outline => "#DCABC1"; |
| 44 | + public string OutlineVariant => "#C696AC"; |
| 45 | + // Shadow |
| 46 | + public string Shadow => "#000000"; |
| 47 | + public string Scrim => "#000000"; |
| 48 | + // Inverse |
| 49 | + public string InverseSurface => "#FFF8F8"; |
| 50 | + public string InverseOnSurface => "#000000"; |
| 51 | + public string InversePrimary => "#70004D"; |
| 52 | + // Primary Fixed |
| 53 | + public string PrimaryFixed => "#FF71C2"; |
| 54 | + public string OnPrimaryFixed => "#000000"; |
| 55 | + public string PrimaryFixedDim => "#FF71C2"; |
| 56 | + public string OnPrimaryFixedVariant => "#000000"; |
| 57 | + // Secondary Fixed |
| 58 | + public string SecondaryFixed => "#FBB1D5"; |
| 59 | + public string OnSecondaryFixed => "#000000"; |
| 60 | + public string SecondaryFixedDim => "#ECA3C7"; |
| 61 | + public string OnSecondaryFixedVariant => "#000000"; |
| 62 | + // Tertiary Fixed |
| 63 | + public string TertiaryFixed => "#EB81BA"; |
| 64 | + public string OnTertiaryFixed => "#000000"; |
| 65 | + public string TertiaryFixedDim => "#EB81BA"; |
| 66 | + public string OnTertiaryFixedVariant => "#000000"; |
| 67 | + // Surface Container |
| 68 | + public string SurfaceContainerLowest => "#000000"; |
| 69 | + public string SurfaceContainerLow => "#210C18"; |
| 70 | + public string SurfaceContainer => "#2A111F"; |
| 71 | + public string SurfaceContainerHigh => "#321725"; |
| 72 | + public string SurfaceContainerHighest => "#3B1B2C"; |
| 73 | +} |
0 commit comments