1212// See the License for the specific language governing permissions and
1313// limitations under the License.
1414
15- package iostreams
15+ package style
1616
1717import (
1818 "testing"
@@ -34,13 +34,13 @@ func TestThemeSlack(t *testing.T) {
3434
3535 t .Run ("focused title uses aubergine foreground" , func (t * testing.T ) {
3636 theme := ThemeSlack ()
37- assert .Equal (t , lipgloss .Color ("#4a154b " ), theme .Focused .Title .GetForeground ())
37+ assert .Equal (t , lipgloss .Color ("#7C2852 " ), theme .Focused .Title .GetForeground ())
3838 })
3939
4040 t .Run ("focused select selector renders cursor" , func (t * testing.T ) {
4141 theme := ThemeSlack ()
4242 rendered := theme .Focused .SelectSelector .Render ()
43- assert .Contains (t , rendered , "> " )
43+ assert .Contains (t , rendered , "❱ " )
4444 })
4545
4646 t .Run ("focused multi-select selected prefix renders checkmark" , func (t * testing.T ) {
@@ -62,7 +62,7 @@ func TestThemeSlack(t *testing.T) {
6262
6363 t .Run ("focused button uses aubergine background" , func (t * testing.T ) {
6464 theme := ThemeSlack ()
65- assert .Equal (t , lipgloss .Color ("#4a154b " ), theme .Focused .FocusedButton .GetBackground ())
65+ assert .Equal (t , lipgloss .Color ("#7C2852 " ), theme .Focused .FocusedButton .GetBackground ())
6666 })
6767
6868 t .Run ("focused button is bold" , func (t * testing.T ) {
@@ -74,14 +74,14 @@ func TestThemeSlack(t *testing.T) {
7474 theme := ThemeSlack ()
7575 rendered := theme .Blurred .SelectSelector .Render ()
7676 assert .Contains (t , rendered , " " )
77- assert .NotContains (t , rendered , "> " )
77+ assert .NotContains (t , rendered , "❱ " )
7878 })
7979
8080 t .Run ("blurred multi-select selector is blank" , func (t * testing.T ) {
8181 theme := ThemeSlack ()
8282 rendered := theme .Blurred .MultiSelectSelector .Render ()
8383 assert .Contains (t , rendered , " " )
84- assert .NotContains (t , rendered , "> " )
84+ assert .NotContains (t , rendered , "❱ " )
8585 })
8686
8787 t .Run ("blurred border is hidden" , func (t * testing.T ) {
@@ -90,9 +90,9 @@ func TestThemeSlack(t *testing.T) {
9090 assert .Equal (t , lipgloss .HiddenBorder (), borderStyle )
9191 })
9292
93- t .Run ("focused border uses bright aubergine" , func (t * testing.T ) {
93+ t .Run ("focused border uses aubergine" , func (t * testing.T ) {
9494 theme := ThemeSlack ()
95- assert .Equal (t , lipgloss .Color ("#611f69 " ), theme .Focused .Base .GetBorderLeftForeground ())
95+ assert .Equal (t , lipgloss .Color ("#7C2852 " ), theme .Focused .Base .GetBorderLeftForeground ())
9696 })
9797
9898 t .Run ("focused text input prompt uses blue" , func (t * testing.T ) {
0 commit comments