-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added the basic building blocks for a new DayNight theme.
Added a handful of colors with (placeholder) semantic naming.
- Loading branch information
Ivan Torres
committed
Jun 1, 2022
1 parent
63bb469
commit a05ec2f
Showing
27 changed files
with
231 additions
and
52 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
thumbprint/src/main/res/color/button_caution_background_selector.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:color="@color/tp_white" /> | ||
<item android:color="?attr/colorSurface" /> | ||
</selector> |
4 changes: 2 additions & 2 deletions
4
thumbprint/src/main/res/color/button_caution_border_color_selector.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:color="@color/tp_gray_300" android:state_enabled="false" /> | ||
<item android:color="@color/primaryBorderColor" android:state_enabled="false" /> | ||
<item android:color="@color/tp_red" android:state_focused="true" /> | ||
<item android:color="@color/tp_red" android:state_pressed="true" /> | ||
<item android:color="@color/tp_gray" /> | ||
<item android:color="@color/primaryBorderColor" /> | ||
</selector> |
2 changes: 1 addition & 1 deletion
2
thumbprint/src/main/res/color/button_caution_text_color_selector_deprecated.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
thumbprint/src/main/res/color/button_clear_text_color_selector.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
thumbprint/src/main/res/color/button_primary_text_color_selector.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:color="@color/tp_white" /> | ||
<item android:color="?attr/colorOnSurface" /> | ||
</selector> |
2 changes: 1 addition & 1 deletion
2
thumbprint/src/main/res/color/button_secondary_background_selector.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:color="@color/tp_white" /> | ||
<item android:color="?attr/colorSecondary" /> | ||
</selector> |
4 changes: 2 additions & 2 deletions
4
thumbprint/src/main/res/color/button_secondary_border_color_selector.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:color="@color/tp_gray_300" android:state_enabled="false" /> | ||
<item android:color="@color/inactiveColor" android:state_enabled="false" /> | ||
<item android:color="@color/tp_blue" android:state_focused="true" /> | ||
<item android:color="@color/tp_blue" android:state_pressed="true" /> | ||
<item android:color="@color/tp_gray" /> | ||
<item android:color="@color/primaryBorderColor" /> | ||
</selector> |
8 changes: 4 additions & 4 deletions
8
thumbprint/src/main/res/color/button_secondary_border_color_selector_deprecated.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:color="@color/tp_gray" android:state_enabled="false" /> | ||
<item android:color="@color/tp_black_300" android:state_focused="true" /> | ||
<item android:color="@color/tp_black_300" android:state_pressed="true" /> | ||
<item android:color="@color/tp_gray" /> | ||
<item android:color="?attr/colorSecondary" android:state_enabled="false" /> | ||
<item android:color="@color/primaryTextColor" android:state_focused="true" /> | ||
<item android:color="@color/primaryTextColor" android:state_pressed="true" /> | ||
<item android:color="?attr/colorSecondary" /> | ||
</selector> |
8 changes: 4 additions & 4 deletions
8
thumbprint/src/main/res/color/button_secondary_text_color_selector_deprecated.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:color="@color/tp_gray" android:state_enabled="false" /> | ||
<item android:color="@color/tp_black_300" android:state_focused="true" /> | ||
<item android:color="@color/tp_black_300" android:state_pressed="true" /> | ||
<item android:color="@color/tp_black_300" /> | ||
<item android:color="@color/inactiveColor" android:state_enabled="false" /> | ||
<item android:color="@color/primaryTextColor" android:state_focused="true" /> | ||
<item android:color="@color/primaryTextColor" android:state_pressed="true" /> | ||
<item android:color="@color/primaryTextColor" /> | ||
</selector> |
2 changes: 1 addition & 1 deletion
2
thumbprint/src/main/res/color/button_solid_background_selector.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:color="@color/tp_white" /> | ||
<item android:color="?attr/colorSurface" /> | ||
</selector> |
8 changes: 4 additions & 4 deletions
8
thumbprint/src/main/res/color/button_solid_background_selector_deprecated.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:color="@color/tp_gray_300" android:state_enabled="false" /> | ||
<item android:color="@color/tp_gray_200" android:state_pressed="true" /> | ||
<item android:color="@color/tp_gray_200" android:state_focused="true" /> | ||
<item android:color="@color/tp_white" /> | ||
<item android:color="@color/primaryBorderColor" android:state_enabled="false" /> | ||
<item android:color="?attr/colorSecondary" android:state_pressed="true" /> | ||
<item android:color="?attr/colorSecondary" android:state_focused="true" /> | ||
<item android:color="?attr/colorSurface" /> | ||
</selector> |
8 changes: 4 additions & 4 deletions
8
thumbprint/src/main/res/color/button_solid_border_color_selector.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:color="@color/tp_white" android:state_enabled="false" /> | ||
<item android:color="@color/tp_black" android:state_focused="true" /> | ||
<item android:color="@color/tp_black" android:state_pressed="true" /> | ||
<item android:color="@color/tp_white" /> | ||
<item android:color="?attr/colorSurface" android:state_enabled="false" /> | ||
<item android:color="?attr/colorOnSurface" android:state_focused="true" /> | ||
<item android:color="?attr/colorOnSurface" android:state_pressed="true" /> | ||
<item android:color="?attr/colorSurface" /> | ||
</selector> |
8 changes: 4 additions & 4 deletions
8
thumbprint/src/main/res/color/button_solid_text_color_selector.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:color="@color/tp_gray" android:state_enabled="false" /> | ||
<item android:color="@color/tp_black" android:state_focused="true" /> | ||
<item android:color="@color/tp_black" android:state_pressed="true" /> | ||
<item android:color="@color/tp_black" /> | ||
<item android:color="?attr/colorSecondary" android:state_enabled="false" /> | ||
<item android:color="?attr/colorOnSurface" android:state_focused="true" /> | ||
<item android:color="?attr/colorOnSurface" android:state_pressed="true" /> | ||
<item android:color="?attr/colorOnSurface" /> | ||
</selector> |
8 changes: 4 additions & 4 deletions
8
thumbprint/src/main/res/color/button_solid_text_color_selector_deprecated.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:color="@color/tp_black_300" android:state_enabled="false" /> | ||
<item android:color="@color/tp_black" android:state_focused="true" /> | ||
<item android:color="@color/tp_black" android:state_pressed="true" /> | ||
<item android:color="@color/tp_black" /> | ||
<item android:color="?attr/colorSecondaryVariant" android:state_enabled="false" /> | ||
<item android:color="?attr/colorOnSurface" android:state_focused="true" /> | ||
<item android:color="?attr/colorOnSurface" android:state_pressed="true" /> | ||
<item android:color="?attr/colorOnSurface" /> | ||
</selector> |
2 changes: 1 addition & 1 deletion
2
thumbprint/src/main/res/color/button_tertiary_background_selector.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:color="@color/tp_white" /> | ||
<item android:color="?attr/colorOnSurface" /> | ||
</selector> |
6 changes: 3 additions & 3 deletions
6
thumbprint/src/main/res/color/button_tertiary_border_color_selector.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:color="@color/tp_gray_300" android:state_enabled="false" /> | ||
<item android:color="@color/tp_black" android:state_focused="true" /> | ||
<item android:color="@color/tp_black" android:state_pressed="true" /> | ||
<item android:color="@color/tp_gray" /> | ||
<item android:color="?attr/colorOnSurface" android:state_focused="true" /> | ||
<item android:color="?attr/colorOnSurface" android:state_pressed="true" /> | ||
<item android:color="?attr/colorSecondary" /> | ||
</selector> |
8 changes: 4 additions & 4 deletions
8
thumbprint/src/main/res/color/button_tertiary_text_color_selector.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:color="@color/tp_gray" android:state_enabled="false" /> | ||
<item android:color="@color/tp_black_300" android:state_focused="true" /> | ||
<item android:color="@color/tp_black_300" android:state_pressed="true" /> | ||
<item android:color="@color/tp_black_300" /> | ||
<item android:color="?attr/colorSecondary" android:state_enabled="false" /> | ||
<item android:color="@color/primaryTextColor" android:state_focused="true" /> | ||
<item android:color="@color/primaryTextColor" android:state_pressed="true" /> | ||
<item android:color="@color/primaryTextColor" /> | ||
</selector> |
8 changes: 4 additions & 4 deletions
8
thumbprint/src/main/res/color/button_tertiary_text_color_selector_deprecated.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:color="@color/tp_gray_300" android:state_enabled="false" /> | ||
<item android:color="@color/tp_black" android:state_focused="true" /> | ||
<item android:color="@color/tp_black" android:state_pressed="true" /> | ||
<item android:color="@color/tp_black_300" /> | ||
<item android:color="?attr/colorSecondaryVariant" android:state_enabled="false" /> | ||
<item android:color="?attr/colorOnSurface" android:state_focused="true" /> | ||
<item android:color="?attr/colorOnSurface" android:state_pressed="true" /> | ||
<item android:color="@color/primaryTextColor" /> | ||
</selector> |
2 changes: 1 addition & 1 deletion
2
thumbprint/src/main/res/color/link_style_label_text_color_selector.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:color="@color/tp_black" android:state_enabled="false" /> | ||
<item android:color="?attr/colorOnSurface" android:state_enabled="false" /> | ||
<item android:color="@color/tp_blue" /> | ||
</selector> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,5 +10,5 @@ | |
|
||
<stroke | ||
android:width="1dp" | ||
android:color="@color/tp_white" /> | ||
android:color="?attr/colorSurface" /> | ||
</shape> |
2 changes: 1 addition & 1 deletion
2
thumbprint/src/main/res/drawable-anydpi/button_primary_background.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<!-- tpx semantic namespace --> | ||
<color name="primarySurfaceColor">@color/tp_black_300</color> | ||
<color name="secondarySurfaceColor">@color/tp_black</color> | ||
<color name="headingTextColor">@color/tp_white</color> | ||
<color name="primaryTextColor">@color/tp_white</color> | ||
<color name="primaryBorderColor">@color/tp_gray_300</color> | ||
<color name="inactiveColor">@color/tp_gray</color> | ||
<color name="primaryIconTintColor">@color/tp_white</color> | ||
|
||
<!-- TODO(itorres) Clean these up to match Figma designs! --> | ||
<color name="blue_100">#005a7a</color> | ||
<color name="blue_200">#007fad</color> | ||
<color name="blue_300">#79d2f2</color> | ||
<color name="blue">#009fd9</color> | ||
<color name="blue_500">#b3ebff</color> | ||
<color name="blue_600">#eaf6fa</color> | ||
<color name="indigo_100">#383c80</color> | ||
<color name="indigo_200">#4f54b3</color> | ||
<color name="indigo_300">#5968e2</color> | ||
<color name="indigo">#96c2ff</color> | ||
<color name="indigo_500">#cce1ff</color> | ||
<color name="indigo_600">#e8f1fd</color> | ||
<color name="purple_100">#502095</color> | ||
<color name="purple_200">#8a5ed6</color> | ||
<color name="purple_300">#a97ff0</color> | ||
<color name="purple">#d3baff</color> | ||
<color name="purple_500">#dfccff</color> | ||
<color name="purple_600">#f5efff</color> | ||
<color name="green_100">#0f6648</color> | ||
<color name="green_200">#109e78</color> | ||
<color name="green_300">#73e4a2</color> | ||
<color name="green">#2db783</color> | ||
<color name="green_500">#c6f7da</color> | ||
<color name="green_600">#e1fdf3</color> | ||
<color name="yellow_100">#8a5500</color> | ||
<color name="yellow_200">#d48300</color> | ||
<color name="yellow_300">#febe14</color> | ||
<color name="yellow">#ffdd80</color> | ||
<color name="yellow_500">#ffebb3</color> | ||
<color name="yellow_600">#fdf7e7</color> | ||
<color name="red_100">#76012c</color> | ||
<color name="red_200">#cc3553</color> | ||
<color name="red_300">#ff5a5f</color> | ||
<color name="red">#ffb0b0</color> | ||
<color name="red_500">#ffd9d9</color> | ||
<color name="red_600">#ffeff0</color> | ||
<color name="black_300">#E1E1E1</color> | ||
<color name="black">#fafafa</color> | ||
<color name="gray_200">#1E1E1E</color> | ||
<color name="gray_300">#606162</color> | ||
<color name="gray">#A0A1A2</color> | ||
|
||
<color name="tp_blue_100">#005a7a</color> | ||
<color name="tp_blue_200">#007fad</color> | ||
<color name="tp_blue_300">#79d2f2</color> | ||
<color name="tp_blue">#009fd9</color> | ||
<color name="tp_blue_500">#b3ebff</color> | ||
<color name="tp_blue_600">#eaf6fa</color> | ||
<color name="tp_indigo_100">#383c80</color> | ||
<color name="tp_indigo_200">#4f54b3</color> | ||
<color name="tp_indigo_300">#5968e2</color> | ||
<color name="tp_indigo">#96c2ff</color> | ||
<color name="tp_indigo_500">#cce1ff</color> | ||
<color name="tp_indigo_600">#e8f1fd</color> | ||
<color name="tp_purple_100">#502095</color> | ||
<color name="tp_purple_200">#8a5ed6</color> | ||
<color name="tp_purple_300">#a97ff0</color> | ||
<color name="tp_purple">#d3baff</color> | ||
<color name="tp_purple_500">#dfccff</color> | ||
<color name="tp_purple_600">#f5efff</color> | ||
<color name="tp_green_100">#0f6648</color> | ||
<color name="tp_green_200">#109e78</color> | ||
<color name="tp_green_300">#2db783</color> | ||
<color name="tp_green">#73e4a2</color> | ||
<color name="tp_green_500">#c6f7da</color> | ||
<color name="tp_green_600">#e1fdf3</color> | ||
<color name="tp_yellow_100">#8a5500</color> | ||
<color name="tp_yellow_200">#d48300</color> | ||
<color name="tp_yellow_300">#febe14</color> | ||
<color name="tp_yellow">#ffdd80</color> | ||
<color name="tp_yellow_500">#ffebb3</color> | ||
<color name="tp_yellow_600">#fdf7e7</color> | ||
<color name="tp_red_100">#76012c</color> | ||
<color name="tp_red_200">#cc3553</color> | ||
<color name="tp_red_300">#ff5a5f</color> | ||
<color name="tp_red">#ffb0b0</color> | ||
<color name="tp_red_500">#ffd9d9</color> | ||
<color name="tp_red_600">#ffeff0</color> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<style name="ThumbprintDayNightTheme" parent="Theme.MaterialComponents.DayNight.NoActionBar.Bridge"> | ||
<item name="colorPrimary">@color/tp_blue</item> | ||
<item name="colorAccent">@color/tp_blue</item> | ||
<item name="colorPrimaryDark">@color/tp_black</item> | ||
<item name="colorSurface">@color/tp_black</item> | ||
<item name="colorOnSurface">@color/tp_white</item> | ||
<item name="colorSecondary">@color/tp_black_300</item> | ||
<item name="colorSecondaryVariant">@color/tp_black_300</item> | ||
<item name="colorOnSecondary">@color/tp_white</item> | ||
<item name="snackbarStyle">@style/ThumbprintToast</item> | ||
</style> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.