catch mid colors outside of WCAG AA

This commit is contained in:
41666 2025-04-06 17:28:26 -07:00
parent f72c7a357b
commit df33164b08
28 changed files with 135 additions and 96 deletions

View file

@ -4,6 +4,7 @@ import (
"bytes"
"crypto/ed25519"
"encoding/hex"
"encoding/json"
"net/http"
"testing"
@ -11,7 +12,6 @@ import (
"git.sapphic.engineer/roleypoly/v4/discord"
"git.sapphic.engineer/roleypoly/v4/interactions"
"git.sapphic.engineer/roleypoly/v4/roleypoly"
"github.com/goccy/go-json"
"github.com/gofiber/fiber/v3"
"github.com/gofiber/fiber/v3/middleware/session"
"github.com/stretchr/testify/assert"

View file

@ -5,6 +5,7 @@ import (
"crypto"
"crypto/ed25519"
"encoding/hex"
"encoding/json"
"net/http"
"testing"
"time"
@ -13,7 +14,6 @@ import (
"git.sapphic.engineer/roleypoly/v4/discord/clientmock"
"git.sapphic.engineer/roleypoly/v4/interactions"
"git.sapphic.engineer/roleypoly/v4/types/fixtures"
"github.com/goccy/go-json"
"github.com/gofiber/fiber/v3"
"github.com/stretchr/testify/assert"
)

View file

@ -3,9 +3,9 @@ package interactions_test
import (
"crypto/ed25519"
"encoding/hex"
"encoding/json"
"testing"
"github.com/goccy/go-json"
"github.com/stretchr/testify/assert"
)