static {
    smallFontProps.setProperty("controlTextFont", "Dialog 12");
    smallFontProps.setProperty("systemTextFont", "Dialog 12");
    smallFontProps.setProperty("userTextFont", "Dialog 12");
    smallFontProps.setProperty("menuTextFont", "Dialog 12");
    smallFontProps.setProperty("windowTitleFont", "Dialog bold 12");
    smallFontProps.setProperty("subTextFont", "Dialog 11");

    mediumFontProps.setProperty("controlTextFont", "Dialog 15");
    mediumFontProps.setProperty("systemTextFont", "Dialog 15");
    mediumFontProps.setProperty("userTextFont", "Dialog 15");
    mediumFontProps.setProperty("menuTextFont", "Dialog 15");
    mediumFontProps.setProperty("windowTitleFont", "Dialog bold 15");
    mediumFontProps.setProperty("subTextFont", "Dialog 13");

    largeFontProps.setProperty("controlTextFont", "Dialog 16");
    largeFontProps.setProperty("systemTextFont", "Dialog 16");
    largeFontProps.setProperty("userTextFont", "Dialog 16");
    largeFontProps.setProperty("menuTextFont", "Dialog 16");
    largeFontProps.setProperty("windowTitleFont", "Dialog bold 16");
    largeFontProps.setProperty("subTextFont", "Dialog 14");

    greenProps.setProperty("windowTitleForegroundColor", "255 255 255");
    greenProps.setProperty("windowTitleBackgroundColor", "0 96 52");
    greenProps.setProperty("windowTitleColorLight", "0 136 57");
    greenProps.setProperty("windowTitleColorDark", "0 88 47");
    greenProps.setProperty("windowBorderColor", "0 88 47");
    greenProps.setProperty("windowInactiveTitleForegroundColor", "255 255 255");
    greenProps.setProperty("windowInactiveTitleBackgroundColor", "0 96 50");
    greenProps.setProperty("windowInactiveTitleColorLight", "0 119 51");
    greenProps.setProperty("windowInactiveTitleColorDark", "0 88 47");
    greenProps.setProperty("windowInactiveBorderColor", "0 88 47");
    greenProps.setProperty("backgroundColor", "231 244 219");
    greenProps.setProperty("backgroundColorLight", "255 255 255");
    greenProps.setProperty("backgroundColorDark", "208 234 185");
    greenProps.setProperty("alterBackgroundColor", "208 234 185");
    greenProps.setProperty("frameColor", "114 180 54");
    greenProps.setProperty("disabledForegroundColor", "96 96 96");
    greenProps.setProperty("disabledBackgroundColor", "228 240 216");
    greenProps.setProperty("selectionForegroundColor", "255 255 255");
    greenProps.setProperty("selectionBackgroundColor", "48 136 53");
    greenProps.setProperty("controlBackgroundColor", "231 244 219");
    greenProps.setProperty("controlColorLight", "40 170 60");
    greenProps.setProperty("controlColorDark", "48 136 53");
    greenProps.setProperty("controlDarkShadowColor", "112 176 53");
    greenProps.setProperty("buttonColorLight", "255 255 255");
    greenProps.setProperty("buttonColorDark", "231 244 219");
    greenProps.setProperty("menuBackgroundColor", "255 255 255");
    greenProps.setProperty("menuColorDark", "218 238 200");
    greenProps.setProperty("menuColorLight", "231 244 219");
    greenProps.setProperty("menuSelectionBackgroundColor", "72 51 0");
    greenProps.setProperty("toolbarBackgroundColor", "231 244 219");
    greenProps.setProperty("toolbarColorLight", "231 244 219");
    greenProps.setProperty("toolbarColorDark", "208 234 185");

    blueProps.setProperty("windowTitleForegroundColor", "255 255 255");
    blueProps.setProperty("windowTitleBackgroundColor", "1 49 157");
    blueProps.setProperty("windowTitleColorLight", "1 40 131");
    blueProps.setProperty("windowTitleColorDark", "1 30 97");
    blueProps.setProperty("windowBorderColor", "0 24 83");
    blueProps.setProperty("windowInactiveTitleForegroundColor", "255 255 255");
    blueProps.setProperty("windowInactiveTitleBackgroundColor", "55 87 129");
    blueProps.setProperty("windowInactiveTitleColorLight", "1 35 116");
    blueProps.setProperty("windowInactiveTitleColorDark", "1 30 97");
    blueProps.setProperty("windowInactiveBorderColor", "0 24 83");
    blueProps.setProperty("backgroundColor", "228 235 243");
    blueProps.setProperty("backgroundColorLight", "255 255 255");
    blueProps.setProperty("backgroundColorDark", "188 204 226");
    blueProps.setProperty("alterBackgroundColor", "208 220 234");
    blueProps.setProperty("frameColor", "120 153 197");
    blueProps.setProperty("disabledForegroundColor", "96 96 96");
    blueProps.setProperty("disabledBackgroundColor", "225 232 240");
    blueProps.setProperty("selectionForegroundColor", "255 255 255");
    blueProps.setProperty("selectionBackgroundColor", "1 38 124");
    blueProps.setProperty("controlBackgroundColor", "228 235 243");
    blueProps.setProperty("controlColorLight", "1 40 131");
    blueProps.setProperty("controlColorDark", "1 30 98");
    blueProps.setProperty("controlDarkShadowColor", "64 100 149");
    blueProps.setProperty("buttonColorLight", "255 255 255");
    blueProps.setProperty("buttonColorDark", "228 235 243");
    blueProps.setProperty("menuBackgroundColor", "255 255 255");
    blueProps.setProperty("menuColorDark", "208 220 234");
    blueProps.setProperty("menuColorLight", "228 235 243");
    blueProps.setProperty("menuSelectionBackgroundColor", "72 51 0");
    blueProps.setProperty("toolbarBackgroundColor", "228 235 243");
    blueProps.setProperty("toolbarColorLight", "228 235 243");
    blueProps.setProperty("toolbarColorDark", "188 204 226");

    String key;
    String value;
    Iterator iter = smallFontProps.keySet().iterator();
    while (iter.hasNext()) {
      key = (String) iter.next();
      value = smallFontProps.getProperty(key);
      greenSmallFontProps.setProperty(key, value);
      blueSmallFontProps.setProperty(key, value);
    }

    iter = mediumFontProps.keySet().iterator();
    while (iter.hasNext()) {
      key = (String) iter.next();
      value = mediumFontProps.getProperty(key);
      greenMediumFontProps.setProperty(key, value);
      blueMediumFontProps.setProperty(key, value);
    }

    iter = largeFontProps.keySet().iterator();
    while (iter.hasNext()) {
      key = (String) iter.next();
      value = largeFontProps.getProperty(key);
      greenLargeFontProps.setProperty(key, value);
      blueLargeFontProps.setProperty(key, value);
    }

    iter = greenProps.keySet().iterator();
    while (iter.hasNext()) {
      key = (String) iter.next();
      value = greenProps.getProperty(key);
      greenSmallFontProps.setProperty(key, value);
      greenMediumFontProps.setProperty(key, value);
      greenLargeFontProps.setProperty(key, value);
    }

    iter = blueProps.keySet().iterator();
    while (iter.hasNext()) {
      key = (String) iter.next();
      value = blueProps.getProperty(key);
      blueSmallFontProps.setProperty(key, value);
      blueMediumFontProps.setProperty(key, value);
      blueLargeFontProps.setProperty(key, value);
    }

    themesList.add("Default");
    themesList.add("Small-Font");
    themesList.add("Medium-Font");
    themesList.add("Large-Font");

    themesList.add("Green");
    themesList.add("Green-Small-Font");
    themesList.add("Green-Medium-Font");
    themesList.add("Green-Large-Font");

    themesList.add("Blue");
    themesList.add("Blue-Small-Font");
    themesList.add("Blue-Medium-Font");
    themesList.add("Blue-Large-Font");

    themesMap.put("Default", defaultProps);
    themesMap.put("Small-Font", smallFontProps);
    themesMap.put("Medium-Font", mediumFontProps);
    themesMap.put("Large-Font", largeFontProps);

    themesMap.put("Green", greenProps);
    themesMap.put("Green-Small-Font", greenSmallFontProps);
    themesMap.put("Green-Medium-Font", greenMediumFontProps);
    themesMap.put("Green-Large-Font", greenLargeFontProps);

    themesMap.put("Blue", blueProps);
    themesMap.put("Blue-Small-Font", blueSmallFontProps);
    themesMap.put("Blue-Medium-Font", blueMediumFontProps);
    themesMap.put("Blue-Large-Font", blueLargeFontProps);
  }
  static {
    smallFontProps.setProperty("controlTextFont", "Dialog 10");
    smallFontProps.setProperty("systemTextFont", "Dialog 10");
    smallFontProps.setProperty("userTextFont", "Dialog 10");
    smallFontProps.setProperty("menuTextFont", "Dialog 10");
    smallFontProps.setProperty("windowTitleFont", "Dialog bold 10");
    smallFontProps.setProperty("subTextFont", "Dialog 8");

    largeFontProps.setProperty("controlTextFont", "Dialog 14");
    largeFontProps.setProperty("systemTextFont", "Dialog 14");
    largeFontProps.setProperty("userTextFont", "Dialog 14");
    largeFontProps.setProperty("menuTextFont", "Dialog 14");
    largeFontProps.setProperty("windowTitleFont", "Dialog bold 14");
    largeFontProps.setProperty("subTextFont", "Dialog 12");

    giantFontProps.setProperty("controlTextFont", "Dialog 18");
    giantFontProps.setProperty("systemTextFont", "Dialog 18");
    giantFontProps.setProperty("userTextFont", "Dialog 18");
    giantFontProps.setProperty("menuTextFont", "Dialog 18");
    giantFontProps.setProperty("windowTitleFont", "Dialog 18");
    giantFontProps.setProperty("subTextFont", "Dialog 16");

    goldProps.setProperty("focusCellColor", "160 160 120");
    goldProps.setProperty("backgroundColor", "240 240 240");
    goldProps.setProperty("backgroundColorLight", "255 255 255");
    goldProps.setProperty("backgroundColorDark", "230 230 230");
    goldProps.setProperty("alterBackgroundColor", "230 230 230");
    goldProps.setProperty("selectionBackgroundColor", "232 232 180");
    goldProps.setProperty("controlBackgroundColor", "240 240 240");
    goldProps.setProperty("controlColorLight", "248 248 180");
    goldProps.setProperty("controlColorDark", "200 200 120");
    goldProps.setProperty("pressedBackgroundColorLight", "249 249 195");
    goldProps.setProperty("pressedBackgroundColorDark", "232 232 180");
    goldProps.setProperty("buttonColorLight", "255 255 255");
    goldProps.setProperty("buttonColorDark", "230 230 230");
    goldProps.setProperty("rolloverColor", "220 220 169");
    goldProps.setProperty("rolloverColorLight", "250 250 240");
    goldProps.setProperty("rolloverColorDark", "220 220 169");
    goldProps.setProperty("windowTitleBackgroundColor", "248 248 180");
    goldProps.setProperty("windowTitleColorLight", "248 248 180");
    goldProps.setProperty("windowTitleColorDark", "200 200 120");
    goldProps.setProperty("windowInactiveBackgroundColor", "240 240 240");
    goldProps.setProperty("windowInactiveTitleColorLight", "248 248 248");
    goldProps.setProperty("windowInactiveTitleColorDark", "220 220 220");
    goldProps.setProperty("menuBackgroundColor", "248 248 248");
    goldProps.setProperty("menuColorLight", "248 248 248");
    goldProps.setProperty("menuColorDark", "230 230 230");
    goldProps.setProperty("menuSelectionBackgroundColor", "232 232 180");
    goldProps.setProperty("toolbarBackgroundColor", "248 248 248");
    goldProps.setProperty("toolbarColorLight", "248 248 248");
    goldProps.setProperty("toolbarColorDark", "230 230 230");
    goldProps.setProperty("desktopColor", "240 240 240");

    greenProps.setProperty("frameColor", "140 140 140");
    greenProps.setProperty("focusCellColor", "40 100 60");
    greenProps.setProperty("backgroundColor", "240 240 240");
    greenProps.setProperty("backgroundColorLight", "255 255 255");
    greenProps.setProperty("backgroundColorDark", "230 230 230");
    greenProps.setProperty("alterBackgroundColor", "230 230 230");
    greenProps.setProperty("selectionBackgroundColor", "160 210 170");
    greenProps.setProperty("controlBackgroundColor", "240 240 240");
    greenProps.setProperty("controlColorLight", "120 199 153");
    greenProps.setProperty("controlColorDark", "60 142 95");
    greenProps.setProperty("pressedBackgroundColorLight", "171 219 191");
    greenProps.setProperty("pressedBackgroundColorDark", "150 211 176");
    greenProps.setProperty("buttonColorLight", "255 255 255");
    greenProps.setProperty("buttonColorDark", "230 230 230");
    greenProps.setProperty("rolloverColor", "150 211 176");
    greenProps.setProperty("rolloverColorLight", "200 232 214");
    greenProps.setProperty("rolloverColorDark", "131 203 162");
    greenProps.setProperty("windowTitleForegroundColor", "255 255 255");
    greenProps.setProperty("windowTitleBackgroundColor", "100 160 140");
    greenProps.setProperty("windowTitleColorLight", "120 199 153");
    greenProps.setProperty("windowTitleColorDark", "60 142 95");
    greenProps.setProperty("windowInactiveForegroundColor", "0 0 0");
    greenProps.setProperty("windowInactiveBackgroundColor", "240 240 240");
    greenProps.setProperty("windowInactiveTitleColorLight", "248 248 248");
    greenProps.setProperty("windowInactiveTitleColorDark", "220 220 220");
    greenProps.setProperty("menuBackgroundColor", "248 248 248");
    greenProps.setProperty("menuColorLight", "248 248 248");
    greenProps.setProperty("menuColorDark", "230 230 230");
    greenProps.setProperty("menuSelectionBackgroundColor", "160 210 170");
    greenProps.setProperty("toolbarBackgroundColor", "248 248 248");
    greenProps.setProperty("toolbarColorLight", "248 248 248");
    greenProps.setProperty("toolbarColorDark", "230 230 230");
    greenProps.setProperty("desktopColor", "240 240 240");

    brownProps.setProperty("frameColor", "128 124 112");
    brownProps.setProperty("focusCellColor", "255 230 120");
    brownProps.setProperty("backgroundColor", "236 233 216");
    brownProps.setProperty("backgroundColorLight", "255 255 255");
    brownProps.setProperty("backgroundColorDark", "226 222 194");
    brownProps.setProperty("alterBackgroundColor", "226 222 194");
    brownProps.setProperty("selectionBackgroundColor", "224 220 192");
    brownProps.setProperty("controlBackgroundColor", "236 233 216");
    brownProps.setProperty("controlColorLight", "242 240 230");
    brownProps.setProperty("controlColorDark", "215 208 172");
    brownProps.setProperty("pressedBackgroundColorLight", "236 233 216");
    brownProps.setProperty("pressedBackgroundColorDark", "224 220 192");
    brownProps.setProperty("buttonColorLight", "255 255 255");
    brownProps.setProperty("buttonColorDark", "244 242 232");
    brownProps.setProperty("rolloverColor", "210 203 164");
    brownProps.setProperty("rolloverColorLight", "236 233 216");
    brownProps.setProperty("rolloverColorDark", "215 208 172");
    brownProps.setProperty("windowTitleForegroundColor", "0 0 0");
    brownProps.setProperty("windowTitleBackgroundColor", "236 233 216");
    brownProps.setProperty("windowTitleColorLight", "236 233 216");
    brownProps.setProperty("windowTitleColorDark", "215 208 172");
    brownProps.setProperty("windowInactiveBackgroundColor", "240 240 230");
    brownProps.setProperty("windowInactiveTitleColorLight", "242 240 230");
    brownProps.setProperty("windowInactiveTitleColorDark", "236 233 216");
    brownProps.setProperty("menuBackgroundColor", "236 233 216");
    brownProps.setProperty("menuColorLight", "248 245 235");
    brownProps.setProperty("menuColorDark", "236 233 216");
    brownProps.setProperty("menuSelectionBackgroundColor", "215 208 172");
    brownProps.setProperty("toolbarBackgroundColor", "248 248 248");
    brownProps.setProperty("toolbarColorLight", "248 245 235");
    brownProps.setProperty("toolbarColorDark", "236 233 216");
    brownProps.setProperty("desktopColor", "236 233 216");

    lemmonProps.setProperty("frameColor", "91 121 13");
    lemmonProps.setProperty("backgroundColor", "227 231 230");
    lemmonProps.setProperty("backgroundColorLight", "255 255 255");
    lemmonProps.setProperty("backgroundColorDark", "218 222 221");
    lemmonProps.setProperty("alterBackgroundColor", "218 222 221");
    lemmonProps.setProperty("selectionBackgroundColor", "175 232 28");
    lemmonProps.setProperty("rolloverColor", "243 254 180");
    lemmonProps.setProperty("rolloverColorLight", "243 254 180");
    lemmonProps.setProperty("rolloverColorDark", "231 253 104");
    lemmonProps.setProperty("windowTitleBackgroundColor", "236 253 138");
    lemmonProps.setProperty("windowTitleColorLight", "236 253 138");
    lemmonProps.setProperty("windowTitleColorDark", "170 229 23");
    lemmonProps.setProperty("windowInactiveTitleBackgroundColor", "240 240 240");
    lemmonProps.setProperty("windowInactiveTitleColorLight", "240 240 240");
    lemmonProps.setProperty("windowInactiveTitleColorDark", "226 226 226");
    lemmonProps.setProperty("controlBackgroundColor", "227 231 230");
    lemmonProps.setProperty("controlColorLight", "236 253 138");
    lemmonProps.setProperty("controlColorDark", "170 229 23");
    lemmonProps.setProperty("pressedBackgroundColorLight", "232 232 232");
    lemmonProps.setProperty("pressedBackgroundColorDark", "220 220 220");
    lemmonProps.setProperty("buttonColorLight", "236 253 138");
    lemmonProps.setProperty("buttonColorDark", "170 229 23");
    lemmonProps.setProperty("menuBackgroundColor", "227 231 230");
    lemmonProps.setProperty("menuSelectionBackgroundColor", "175 232 28");
    lemmonProps.setProperty("menuBackgroundColorLight", "238 240 240");
    lemmonProps.setProperty("menuColorLight", "238 240 240");
    lemmonProps.setProperty("menuColorDark", "224 228 227");
    lemmonProps.setProperty("toolbarBackgroundColor", "238 240 240");
    lemmonProps.setProperty("toolbarColorLight", "238 240 240");
    lemmonProps.setProperty("toolbarColorDark", "224 228 227");
    lemmonProps.setProperty("desktopColor", "227 231 230");

    grayProps.setProperty("backgroundColor", "244 244 244");
    grayProps.setProperty("backgroundColorLight", "255 255 255");
    grayProps.setProperty("backgroundColorDark", "230 230 230");
    grayProps.setProperty("alterBackgroundColor", "230 230 230");
    grayProps.setProperty("selectionForegroundColor", "255 255 255");
    grayProps.setProperty("selectionBackgroundColor", "128 128 128");
    grayProps.setProperty("controlBackgroundColor", "244 244 244");
    grayProps.setProperty("controlColorLight", "192 192 192");
    grayProps.setProperty("controlColorDark", "128 128 128");
    grayProps.setProperty("pressedBackgroundColorLight", "236 236 236");
    grayProps.setProperty("pressedBackgroundColorDark", "224 224 224");
    grayProps.setProperty("buttonColorLight", "255 255 255");
    grayProps.setProperty("buttonColorDark", "232 232 232");
    grayProps.setProperty("rolloverColor", "212 212 212");
    grayProps.setProperty("rolloverColorLight", "232 232 232");
    grayProps.setProperty("rolloverColorDark", "200 200 200");
    grayProps.setProperty("windowTitleForegroundColor", "255 255 255");
    grayProps.setProperty("windowTitleBackgroundColor", "64 64 64");
    grayProps.setProperty("windowTitleColorLight", "164 164 164");
    grayProps.setProperty("windowTitleColorDark", "96 96 96");
    grayProps.setProperty("windowInactiveForegroundColor", "0 0 0");
    grayProps.setProperty("windowInactiveBackgroundColor", "240 240 240");
    grayProps.setProperty("windowInactiveTitleColorLight", "244 244 244");
    grayProps.setProperty("windowInactiveTitleColorDark", "212 212 212");
    grayProps.setProperty("menuBackgroundColor", "255 255 255");
    grayProps.setProperty("menuColorLight", "252 252 252");
    grayProps.setProperty("menuColorDark", "232 232 232");
    grayProps.setProperty("menuSelectionForegroundColor", "255 255 255");
    grayProps.setProperty("menuSelectionBackgroundColor", "128 128 128");
    grayProps.setProperty("toolbarBackgroundColor", "248 248 248");
    grayProps.setProperty("toolbarColorLight", "252 252 252");
    grayProps.setProperty("toolbarColorDark", "232 232 232");
    grayProps.setProperty("desktopColor", "240 240 240");

    String key;
    String value;
    Iterator iter = smallFontProps.keySet().iterator();
    while (iter.hasNext()) {
      key = (String) iter.next();
      value = smallFontProps.getProperty(key);
      goldSmallFontProps.setProperty(key, value);
      greenSmallFontProps.setProperty(key, value);
      brownSmallFontProps.setProperty(key, value);
      lemmonSmallFontProps.setProperty(key, value);
      graySmallFontProps.setProperty(key, value);
    }
    iter = largeFontProps.keySet().iterator();
    while (iter.hasNext()) {
      key = (String) iter.next();
      value = largeFontProps.getProperty(key);
      goldLargeFontProps.setProperty(key, value);
      greenLargeFontProps.setProperty(key, value);
      brownLargeFontProps.setProperty(key, value);
      lemmonLargeFontProps.setProperty(key, value);
      grayLargeFontProps.setProperty(key, value);
    }
    iter = giantFontProps.keySet().iterator();
    while (iter.hasNext()) {
      key = (String) iter.next();
      value = giantFontProps.getProperty(key);
      goldGiantFontProps.setProperty(key, value);
      greenGiantFontProps.setProperty(key, value);
      brownGiantFontProps.setProperty(key, value);
      lemmonGiantFontProps.setProperty(key, value);
      grayGiantFontProps.setProperty(key, value);
    }

    iter = goldProps.keySet().iterator();
    while (iter.hasNext()) {
      key = (String) iter.next();
      value = goldProps.getProperty(key);
      goldSmallFontProps.setProperty(key, value);
      goldLargeFontProps.setProperty(key, value);
      goldGiantFontProps.setProperty(key, value);
    }
    iter = greenProps.keySet().iterator();
    while (iter.hasNext()) {
      key = (String) iter.next();
      value = greenProps.getProperty(key);
      greenSmallFontProps.setProperty(key, value);
      greenLargeFontProps.setProperty(key, value);
      greenGiantFontProps.setProperty(key, value);
    }
    iter = brownProps.keySet().iterator();
    while (iter.hasNext()) {
      key = (String) iter.next();
      value = brownProps.getProperty(key);
      brownSmallFontProps.setProperty(key, value);
      brownLargeFontProps.setProperty(key, value);
      brownGiantFontProps.setProperty(key, value);
    }
    iter = lemmonProps.keySet().iterator();
    while (iter.hasNext()) {
      key = (String) iter.next();
      value = lemmonProps.getProperty(key);
      lemmonSmallFontProps.setProperty(key, value);
      lemmonLargeFontProps.setProperty(key, value);
      lemmonGiantFontProps.setProperty(key, value);
    }
    iter = grayProps.keySet().iterator();
    while (iter.hasNext()) {
      key = (String) iter.next();
      value = grayProps.getProperty(key);
      graySmallFontProps.setProperty(key, value);
      grayLargeFontProps.setProperty(key, value);
      grayGiantFontProps.setProperty(key, value);
    }

    themesList.add("Default");
    themesList.add("Small-Font");
    themesList.add("Large-Font");
    themesList.add("Giant-Font");

    themesList.add("Gold");
    themesList.add("Gold-Small-Font");
    themesList.add("Gold-Large-Font");
    themesList.add("Gold-Giant-Font");

    themesList.add("Green");
    themesList.add("Green-Small-Font");
    themesList.add("Green-Large-Font");
    themesList.add("Green-Giant-Font");

    themesList.add("Brown");
    themesList.add("Brown-Small-Font");
    themesList.add("Brown-Large-Font");
    themesList.add("Brown-Giant-Font");

    themesList.add("Lemmon");
    themesList.add("Lemmon-Small-Font");
    themesList.add("Lemmon-Large-Font");
    themesList.add("Lemmon-Giant-Font");

    themesList.add("Gray");
    themesList.add("Gray-Small-Font");
    themesList.add("Gray-Large-Font");
    themesList.add("Gray-Giant-Font");

    themesMap.put("Default", defaultProps);
    themesMap.put("Small-Font", smallFontProps);
    themesMap.put("Large-Font", largeFontProps);
    themesMap.put("Giant-Font", giantFontProps);

    themesMap.put("Gold", goldProps);
    themesMap.put("Gold-Small-Font", goldSmallFontProps);
    themesMap.put("Gold-Large-Font", goldLargeFontProps);
    themesMap.put("Gold-Giant-Font", goldGiantFontProps);

    themesMap.put("Green", greenProps);
    themesMap.put("Green-Small-Font", greenSmallFontProps);
    themesMap.put("Green-Large-Font", greenLargeFontProps);
    themesMap.put("Green-Giant-Font", greenGiantFontProps);

    themesMap.put("Brown", brownProps);
    themesMap.put("Brown-Small-Font", brownSmallFontProps);
    themesMap.put("Brown-Large-Font", brownLargeFontProps);
    themesMap.put("Brown-Giant-Font", brownGiantFontProps);

    themesMap.put("Lemmon", lemmonProps);
    themesMap.put("Lemmon-Small-Font", lemmonSmallFontProps);
    themesMap.put("Lemmon-Large-Font", lemmonLargeFontProps);
    themesMap.put("Lemmon-Giant-Font", lemmonGiantFontProps);

    themesMap.put("Gray", grayProps);
    themesMap.put("Gray-Small-Font", graySmallFontProps);
    themesMap.put("Gray-Large-Font", grayLargeFontProps);
    themesMap.put("Gray-Giant-Font", grayGiantFontProps);
  }