Skip to content

Commit

Permalink
Merge branch '1375-replace-white-opacity' into 1375-replace-rgb
Browse files Browse the repository at this point in the history
# Conflicts:
#	Nos/Assets/Colors.xcassets/big-action-button-gradient-bottom.colorset/Contents.json
  • Loading branch information
lingoslinger committed Aug 16, 2024
2 parents 686fc9b + 1e9ef01 commit bd25915
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
"color-space" : "srgb",
"components" : {
"alpha" : "1.000",
"blue" : "0.333",
"green" : "0.263",
"red" : "0.949"
"blue" : "0x55",
"green" : "0x4E",
"red" : "0xF2"
}
},
"idiom" : "universal"
Expand Down

This file was deleted.

2 changes: 1 addition & 1 deletion Nos/Views/BigActionButton.swift
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ struct BigActionButtonStyle: ButtonStyle {
.cornerRadius(80)
.offset(y: 4.5)
.shadow(
color: Color.bigActionButtonShadow,
color: Color.lightShadow,
radius: 2,
x: 0,
y: configuration.isPressed ? 0 : 1
Expand Down
2 changes: 1 addition & 1 deletion Nos/Views/Form/NosFormSection.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ struct NosFormSection<Content: View>: View {
.cornerRadius(21)
.offset(y: 4.5)
.shadow(
color: Color.nosFormSectionShadow,
color: Color.lightShadow,
radius: 2,
x: 0,
y: 0
Expand Down

0 comments on commit bd25915

Please sign in to comment.