Skip to content

Commit 33e5db6

Browse files
committed
[clang] Improve colors in status tracking web pages.
Use a consistent, more pastel color for unknown status in papers and issues tracking pages
1 parent ee43128 commit 33e5db6

File tree

6 files changed

+1627
-1625
lines changed

6 files changed

+1627
-1625
lines changed

clang/.clang-tidy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Note that the readability-identifier-naming check is disabled, there are too
22
# many violations in the codebase and they create too much noise in clang-tidy
33
# results.
4-
Checks: '-readability-identifier-naming'
4+
Checks: '-readability-identifier-naming, -misc-include*'
55
InheritParentConfig: true

clang/www/c_dr_status.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
.unreleased { background-color: #FFFF99 }
1313
.full { background-color: #CCFF99 }
1414
.na { background-color: #DDDDDD }
15-
.unknown { background-color: #FF55FF }
15+
.unknown { background-color: #EBCAFE }
1616
.open * { color: #AAAAAA }
1717
//.open { filter: opacity(0.2) }
1818
tr:target { background-color: #FFFFBB }
@@ -35,7 +35,7 @@ <h2 id="cdr">C defect report implementation status</h2>
3535

3636
<p>The implementation status for defect reports against the C Standard are
3737
currently under investigation. Any defect report whose status in Clang is
38-
currently unknown will be marked in <span class="unknown">magenta</span>.</p>
38+
currently unknown will be marked in <span class="unknown">purple</span>.</p>
3939

4040
<p>The <a href="https://github.com/llvm/llvm-project/issues/">LLVM bug tracker</a> uses
4141
the "c", "c99", "c11", "c17", and "c23" labels to track known bugs with Clang's language

clang/www/c_status.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
.none { background-color: #FFCCCC }
1010
.partial { background-color: #FFE0B0 }
1111
.unreleased { background-color: #FFFF99 }
12-
.unknown { background-color: #FF55FF }
12+
.unknown { background-color: #DDAEF7 }
1313
.full { background-color: #CCFF99 }
1414
.na { background-color: #DDDDDD }
1515
:target { background-color: #FFFFBB; outline: #DDDD55 solid thin; }

0 commit comments

Comments
 (0)