first commit -> move some files from one-api

This commit is contained in:
2026-05-06 13:37:10 +07:00
parent a3144382c5
commit 55c6ed9779
7940 changed files with 628870 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
"FFAABBCC", 0.1, "FFB2C1D1" // RGBA
"FFAABBCC", -0.1, "FF99A8B7" // RGBA
"AABBCC", 0.1, "B2C1D1" // RGB
"AABBCC", -0.1, "99A8B7" // RGB
"FF0000", 0.1, "FF1919"
"FF0000", -0.1, "E50000"
"FF8080", 0.1, "FF8C8C"
"FF8080", -0.1, "E57373"
"FF0000", 0.15, "FF2626"
"FF0000", -0.15, "D80000"
"FF8080", 0.15, "FF9393"
"FF8080", -0.15, "D86C6C"
"FFF008", 0.5, "FFF783"
"FFF008", -0.5, "7F7804"

View File

@@ -0,0 +1,6 @@
"FFAABBCC", "CC" // RGBA (hex)
"FFAABBCC", FALSE, 204 // RGBA (decimal)
"AABBCC", "CC" // RGB (hex)
"AABBCC", FALSE, 204 // RGB (decimal)
"FFFF00", "00"
"FFFF00", FALSE, 0

View File

@@ -0,0 +1,6 @@
"FFAABBCC", "BB" // RGBA (hex)
"FFAABBCC", FALSE, 187 // RGBA (decimal)
"AABBCC", "BB" // RGB (hex)
"AABBCC", FALSE, 187 // RGB (decimal)
"FF00FF", "00"
"FF00FF", FALSE, 0

View File

@@ -0,0 +1,6 @@
"FFAABBCC", "AA" // RGBA (hex)
"FFAABBCC", FALSE, 170 // RGBA (decimal)
"AABBCC", "AA" // RGB (hex)
"AABBCC", FALSE, 170 // RGB (decimal)
"00FFFF", "00"
"00FFFF", FALSE, 0

View File

@@ -0,0 +1,37 @@
# value format result
0.0, "0.0", "0.0"
0.0, "0", "0"
0, "0.0", "0.0"
0, "0", "0"
0, "##0", "000"
12, "#.0#", "12.0"
0.1, "0.0", "0.1"
0.1, "0", "0"
5.5555, "0.###", "5.556"
5.5555, "0.0##", "5.556"
5.5555, "0.00#", "5.556"
5.5555, "0.000", "5.556"
5.5555, "0.0000", "5.5555"
12345.6789, '"#,##0.00"', '"12,345.68"'
12345.6789, '"#,##0.000"', '"12,345.679"'
12345.6789, '"£ #,##0.00"', '"£ 12,345.68"'
12345.6789, '"$ #,##0.000"', '"$ 12,345.679"'
5.6789, '"#,##0.00"', '"5.68"'
12000, '"#,###"', '"12,000"'
12000, '"#,"', '12'
12200000, '"0.0,,"', '12.2' // Scaling test
0.08, "0%", "8%"
0.8, "0%", "80%"
2.8, "0%", "280%"
125.74, '$0.00" Surplus";$-0.00" Shortage"', "$125.74 Surplus"
-125.74, '$0.00" Surplus";$-0.00" Shortage"', "$-125.74 Shortage"
-125.74, '$0.00" Surplus";$0.00" Shortage"', "$125.74 Shortage"
5.25, '# ???/???', "5 1/4" // Fraction
5.3, '# ???/???', "5 3/10" // Vulgar Fraction
5.25, '???/???', "21/4"
123456789, '(000) 0-0000-000', "(001) 2-3456-789"
123456789, '0 (+00) 0000 00 00 00', "0 (+00) 0123 45 67 89"
123456789, '0000:00:00', "12345:67:89"
-123456789, '0000:00:00', "-12345:67:89"
1234567.89, '0000:00.00', "12345:67.89"
-1234567.89,'0000:00.00', "-12345:67.89"

View File

@@ -0,0 +1,6 @@
22269.0625, 'dd-mm-yyyy hh:mm:ss', "19-12-1960 01:30:00"
22269.0625, 'MM/DD/YYYY HH:MM:SS', "12/19/1960 01:30:00" // Oasis uses upper-case
22269.0625, 'yyyy-mm-dd\Thh:mm:ss', "1960-12-19T01:30:00" // Date with plaintext escaped with a \
22269.0625, 'yyyy-mm-dd"T"hh:mm:ss \Z', "1960-12-19T01:30:00 Z" // Date with plaintext in quotes
22269.0625, '"y-m-d" yyyy-mm-dd "h:m:s" hh:mm:ss', "y-m-d 1960-12-19 h:m:s 01:30:00" // Date with quoted formatting characters
22269.0625, '"y-m-d "yyyy-mm-dd" h:m:s "hh:mm:ss', "y-m-d 1960-12-19 h:m:s 01:30:00" // Date with quoted formatting characters