forked from facebook/react-native-website
-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
translate colors.md #35
Open
YutamaKotaro
wants to merge
1
commit into
master
Choose a base branch
from
translate-color
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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 |
---|---|---|
|
@@ -3,23 +3,23 @@ id: colors | |
title: Color Reference | ||
--- | ||
|
||
Components in React Native are [styled using JavaScript](style). Color properties usually match how [CSS works on the web](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value). General guides on the color usage on each platform could be found below: | ||
React Native のコンポーネントは[styled using JavaScript](style)です。color プロパティは、[CSS works on the web](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value) と通常一致します。各プラットフォームにおける color の司法用については以下の通りです。 | ||
|
||
- [Android](https://material.io/design/color/color-usage.html) | ||
- [iOS](https://developer.apple.com/design/human-interface-guidelines/ios/visual-design/color/) | ||
|
||
## Color APIs | ||
|
||
React Native has several color APIs designed to allow you to take full advantage of your platform's design and user preferences. | ||
React Native にはユーザーの好みやプラットフォームのデザインを最大限に発揮できるように設計されたいくつかの color API があります。 | ||
|
||
- [PlatformColor](platformcolor) lets you reference the platform's color system. | ||
- [DynamicColorIOS](dynamiccolorios) is iOS specific and allows you to specify which colors should be used in light or Dark Mode. | ||
- [PlatformColor](platformcolor) プラットフォームのカラーシステムについて参照できます。 | ||
- [DynamicColorIOS](dynamiccolorios) iOS 固有で、ダークモードあるいはライトモードの時にどの色を使うべきかを指定できます。 | ||
|
||
## Color representations | ||
## 色の表現方法 | ||
|
||
### Red Green Blue (RGB) | ||
|
||
React Native supports `rgb()` and `rgba()` in both hexadecimal and functional notation: | ||
React Native は 16 進数と関数表記の両方で `rgb()` と `rgba()` をサポートしています。 | ||
|
||
- `'#f0f'` (#rgb) | ||
- `'#ff00ff'` (#rrggbb) | ||
|
@@ -30,32 +30,32 @@ React Native supports `rgb()` and `rgba()` in both hexadecimal and functional no | |
|
||
### Hue Saturation Lightness (HSL) | ||
|
||
React Native supports `hsl()` and `hsla()` in functional notation: | ||
React Native は関数表記において `hsl()` と `hsla()` をサポートしています。 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. へぇ、こういう指定方法もあるんですね。勉強になります。 |
||
|
||
- `'hsl(360, 100%, 100%)'` | ||
- `'hsla(360, 100%, 100%, 1.0)'` | ||
|
||
### Color ints | ||
|
||
React Native supports also colors as an `int` values (in RGB color mode): | ||
React Native では、`int`(RGB カラーモードで)値もサポートしています。 | ||
|
||
- `0xff00ff00` (0xrrggbbaa) | ||
|
||
> **_Note:_** This might appear similar to the Android [Color](https://developer.android.com/reference/android/graphics/Color) ints representation but on Android values are stored in SRGB color mode (0xaarrggbb). | ||
> **_注:_** これはAndroidの [Color](https://developer.android.com/reference/android/graphics/Color) ints 表記に似ているように見えますが、AndroidではSRGBカラーモード(0xaarrggbb)で保存されます。 | ||
|
||
### Named colors | ||
### カラー名 | ||
|
||
In React Native you can also use color name strings as values. | ||
React Native ではカラー名を使うこともできます。 | ||
|
||
> **_Note:_** React Native only supports lowercase color names. Uppercase color names are not supported. | ||
> **_注:_** React Nativeでは lowercase のカラー名のみをサポートしています。uppercaseのカラー名はサポートしていません。 | ||
|
||
#### `transparent` | ||
|
||
This is a shortcut for `rgba(0,0,0,0)`, same like in [CSS3](https://www.w3.org/TR/css-color-3/#transparent). | ||
[CSS3](https://www.w3.org/TR/css-color-3/#transparent) のような `rgba(0, 0, 0, 0)` の短縮表記です。 | ||
|
||
#### Color keywords | ||
#### キーワード | ||
|
||
Named colors implementation follows the [CSS3/SVG specification](https://www.w3.org/TR/css-color-3/#svg-color): | ||
カラー名の実装は [CSS3/SVG specification](https://www.w3.org/TR/css-color-3/#svg-color) にしたがっています。 | ||
|
||
<!-- alex ignore black white --> | ||
|
||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
司法用 → 使用法
のようです!