xhiroga / aws-peacock-management-console

Browser Extension to show account alias and change color of AWS Management Console, even if AWS SSO.
MIT License
86 stars 11 forks source link

Configuration file for the FOUR examples in .png in the top of repo #55

Closed xhiroga closed 2 years ago

xhiroga commented 2 years ago

Description

Some users need the configuration file to set four colors.

Motivation

to provide preset to user.

Acknowledge

xhiroga commented 2 years ago
[
  // Yellow
  {
    "env": {
      "account": "111111111111"
    },
    "style": {
      "navigationBackgroundColor": "#f4e57d",
      "accountMenuButtonBackgroundColor": "#6db4a5"
    }
  },
  // Red
  {
    "env": {
      "account": "222222222222"
    },
    "style": {
      "navigationBackgroundColor": "#b25752",
      "accountMenuButtonBackgroundColor": "#80c45e"
    }
  },
  // Blue
  {
    "env": {
      "account": "333333333333"
    },
    "style": {
      "navigationBackgroundColor": "#6099f0",
      "accountMenuButtonBackgroundColor": "#a1345e"
    }
  },
  // Green
  {
    "env": {
      "account": "444444444444"
    },
    "style": {
      "navigationBackgroundColor": "#517750",
      "accountMenuButtonBackgroundColor": "#3c326c"
    }
  },
]