flutter-idea/src/io/flutter/editor/FlutterColors.java [48:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  static {
    colors = new Properties();

    try {
      colors.load(FlutterUtils.class.getResourceAsStream("/flutter/colors/material.properties"));
    }
    catch (IOException e) {
      FlutterUtils.warn(LOG, e);
    }

    colorToName = new HashMap<>();
    for (Map.Entry<Object, Object> entry : colors.entrySet()) {
      final String name = (String)entry.getKey();
      final String value = (String)entry.getValue();
      final Color color = parseColor(value);
      if (color != null) {
        colorToName.put(color, name);
      }
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



flutter-idea/src/io/flutter/editor/FlutterCupertinoColors.java [26:45]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  static {
    colors = new Properties();

    try {
      colors.load(FlutterUtils.class.getResourceAsStream("/flutter/colors/cupertino.properties"));
    }
    catch (IOException e) {
      FlutterUtils.warn(LOG, e);
    }

    colorToName = new HashMap<>();
    for (Map.Entry<Object, Object> entry : colors.entrySet()) {
      final String name = (String)entry.getKey();
      final String value = (String)entry.getValue();
      final Color color = parseColor(value);
      if (color != null) {
        colorToName.put(color, name);
      }
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



