Skip to content

Commit

Permalink
Merge pull request #58 from frontegg/FR-9490-fix-palette
Browse files Browse the repository at this point in the history
FR-9490 - Fix palette
  • Loading branch information
aviadmizrachi authored Nov 2, 2022
2 parents 243e864 + 68bf944 commit 5b96901
Show file tree
Hide file tree
Showing 8 changed files with 542 additions and 129 deletions.
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ release:
# If you want to manually examine the release before its live, uncomment this line:
# draft: true
changelog:
skip: true
skip: false
78 changes: 78 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
# Changelog

## v0.2.36

### Changed

**BREAKING CHANGES:**
Inside Admin Portal changed palette structure from

```tf
palette {
success = "#2ca744"
info = "#5587c0"
warning = "#ffc107"
error = "#e1583e"
primary = "#43bb7a"
primary_text = "#ffffff"
secondary = "#fbfbfc"
secondary_text = "#3c4a5a"
}
```

to new structure:

````tf
palette {
success = "#2ca744"
info = "#5587c0"
warning = "#ffc107"
error = "#e1583e"
primary = "#43bb7a"
primary_text = "#ffffff"
secondary = "#fbfbfc"
secondary_text = "#3c4a5a"
}
```palette {
error {
contrast_text = "#eeeef0"
dark= "#ae402c"
light= "#FFEEEA"
main= "#E1583E"
}
info {
contrast_text = "#eeeef0"
dark= "#3c6492"
light= "#E2EEF9"
main= "#5587C0"
}
primary {
active = "#278854"
contrast_text = "#eeeef0"
dark = "#36A76A"
hover = "#32A265"
light = "#A2E1BF"
main = "#43BB7A"
}
secondary {
active = "#E6ECF4"
contrast_text = "#eeeef0"
dark = "#E6ECF4"
hover = "#F0F3F8"
light = "#FBFBFC"
main = "#FBFBFC"
}
success {
contrast_text = "#eeeef0"
dark = "#1d7c30"
light = "#E1F5E2"
main = "#2CA744"
}
warning {
contrast_text = "#eeeef0"
dark = "#EAE1C2"
light = "#F9F4E2"
main = "#A79D7B"
}
}
````
6 changes: 6 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ If you wish to work on the provider, you'll first need
[Go](http://www.golang.org) installed on your machine (see
[Requirements](#requirements) above).

**pay attention to install platform compatible version**

`git clone` this repository and `cd` into its directory.
To compile the provider, run `make install`. This will build the provider and
put the provider binary in the correct location within `~/.terraform.d` so that
Terraform can find the plugin.
Expand All @@ -20,6 +23,9 @@ To run the full suite of acceptance tests, run `make testacc`.
$ make testacc
```

## Debugging
Terraform has detailed logs that you can enable by setting the `TF_LOG` environment variable to any value. Enabling this setting causes detailed logs to appear on `stderr`.

### Iteration cycle

This provider does not yet have an acceptance test suite. Instead, developers
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ platform.

* [Terraform](https://www.terraform.io/downloads.html) >= 1.0.3
* [Go](https://golang.org/doc/install) >= 1.16
**pay attention to install platform compatible version**

## Using the provider

Expand Down
Loading

0 comments on commit 5b96901

Please sign in to comment.