Home
last modified time | relevance | path

Searched refs:DARKGRAY (Results 1 – 25 of 182) sorted by relevance

12345678

/dports/devel/raylib/raylib-3.7.0/examples/core/
H A Dcore_3d_camera_free.c67 DrawText("- Mouse Wheel to Zoom in-out", 40, 40, 10, DARKGRAY); in main()
68 DrawText("- Mouse Wheel Pressed to Pan", 40, 60, 10, DARKGRAY); in main()
69 DrawText("- Alt + Mouse Wheel Pressed to Rotate", 40, 80, 10, DARKGRAY); in main()
70 DrawText("- Alt + Ctrl + Mouse Wheel Pressed for Smooth Zoom", 40, 100, 10, DARKGRAY); in main()
71 DrawText("- Z to zoom to (0, 0, 0)", 40, 120, 10, DARKGRAY); in main()
H A Dcore_2d_camera.c95 DrawRectangle(-6000, 320, 13000, 8000, DARKGRAY); in main()
117 DrawText("- Right/Left to move Offset", 40, 40, 10, DARKGRAY); in main()
118 DrawText("- Mouse Wheel to Zoom in-out", 40, 60, 10, DARKGRAY); in main()
119 DrawText("- A / S to Rotate", 40, 80, 10, DARKGRAY); in main()
120 DrawText("- R to reset Zoom and Rotation", 40, 100, 10, DARKGRAY); in main()
H A Dcore_drop_files.c48 if (count == 0) DrawText("Drop your files to this window!", 100, 40, 20, DARKGRAY); in main()
51 DrawText("Dropped files:", 100, 40, 20, DARKGRAY); in main()
61 DrawText("Drop new files...", 100, 110 + 40*count, 20, DARKGRAY); in main()
H A Dcore_input_multitouch.c78 … DrawText("move ball with mouse and click mouse button to change color", 10, 10, 20, DARKGRAY); in main()
79 … DrawText("touch the screen at multiple locations to get multiple balls", 10, 30, 20, DARKGRAY); in main()
H A Dcore_input_gamepad.c67 DrawTexture(texXboxPad, 0, 0, DARKGRAY); in main()
115 DrawTexture(texPs3Pad, 0, 0, DARKGRAY); in main()
169 …awText(TextFormat("AXIS %i: %.02f", i, GetGamepadAxisMovement(0, i)), 20, 70 + 20*i, 10, DARKGRAY); in main()
H A Dcore_2d_camera_platformer.c137 DrawText("- Right/Left to move", 40, 40, 10, DARKGRAY); in main()
138 DrawText("- Space to jump", 40, 60, 10, DARKGRAY); in main()
139 DrawText("- Mouse Wheel to Zoom in-out, R to reset zoom", 40, 80, 10, DARKGRAY); in main()
140 DrawText("- C to change camera mode", 40, 100, 10, DARKGRAY); in main()
142 DrawText(cameraDescriptions[cameraOption], 40, 140, 10, DARKGRAY); in main()
H A Dcore_loading_thread.c96 … case STATE_WAITING: DrawText("PRESS ENTER to START LOADING DATA", 150, 170, 20, DARKGRAY); break; in main()
112 DrawRectangleLines(150, 200, 500, 60, DARKGRAY); in main()
H A Dcore_3d_camera_first_person.c84 DrawText("- Move with keys: W, A, S, D", 40, 40, 10, DARKGRAY); in main()
85 DrawText("- Mouse move to look around", 40, 60, 10, DARKGRAY); in main()
H A Dcore_3d_picking.c83 DrawCubeWires(cubePosition, cubeSize.x, cubeSize.y, cubeSize.z, DARKGRAY); in main()
91 DrawText("Try selecting the box with mouse!", 240, 10, 20, DARKGRAY); in main()
/dports/games/dungeoncrawl/dc400b26-src/source/
H A Dunrand.h476 OBJ_WEAPONS, WPN_SCYTHE, +3, +5, DARKGRAY,
857 OBJ_WEAPONS, WPN_SPEAR, +2, +10, DARKGRAY,
931 OBJ_WEAPONS, WPN_QUARTERSTAFF, +3, +1, DARKGRAY,
950 OBJ_WEAPONS, WPN_HAND_CROSSBOW, +10, +0, DARKGRAY,
986 OBJ_ARMOUR, ARM_ROBE, +4, 0, DARKGRAY,
H A Ddefines.h113 #define DARKGRAY DARKGREY macro
117 #define DARKGREY DARKGRAY
/dports/devel/raylib/raylib-3.7.0/examples/models/
H A Dmodels_yaw_pitch_roll.c99 DrawText("Pitch controlled with: KEY_UP / KEY_DOWN", 40, 380, 10, DARKGRAY); in main()
100 DrawText("Roll controlled with: KEY_LEFT / KEY_RIGHT", 40, 400, 10, DARKGRAY); in main()
101 DrawText("Yaw controlled with: KEY_A / KEY_S", 40, 420, 10, DARKGRAY); in main()
103 …xt("(c) WWI Plane Model created by GiaHanLam", screenWidth - 240, screenHeight - 20, 10, DARKGRAY); in main()
H A Dmodels_box_collisions.c94 … DrawCubeWires(enemyBoxPos, enemyBoxSize.x, enemyBoxSize.y, enemyBoxSize.z, DARKGRAY); in main()
98 DrawSphereWires(enemySpherePos, enemySphereSize, 16, 16, DARKGRAY); in main()
/dports/devel/raylib/raylib-3.7.0/examples/textures/
H A Dtextures_image_drawing.c74 … texture.width/2, screenHeight/2 - texture.height/2 - 40, texture.width, texture.height, DARKGRAY); in main()
76 … DrawText("We are drawing only one texture from various images composed!", 240, 350, 10, DARKGRAY); in main()
77 …images have been cropped, scaled, flipped and copied one over the other.", 190, 370, 10, DARKGRAY); in main()
H A Dtextures_rectangle.c73 DrawText("FRAME SPEED: ", 165, 210, 10, DARKGRAY); in main()
74 DrawText(TextFormat("%02i FPS", framesSpeed), 575, 210, 10, DARKGRAY); in main()
75 DrawText("PRESS RIGHT/LEFT KEYS to CHANGE SPEED!", 290, 240, 10, DARKGRAY); in main()
H A Dtextures_npatch_drawing.c93 DrawText("TEXTURE", 15, 360, 10, DARKGRAY); in main()
95 DrawText("Move the mouse to stretch or shrink the n-patches", 10, 20, 20, DARKGRAY); in main()
/dports/devel/raylib/raylib-3.7.0/examples/text/
H A Dtext_font_filters.c104 DrawText("Drop a new TTF font for dynamic loading", 20, 80, 10, DARKGRAY); in main()
112 … DrawText(TextFormat("Font size: %02.02f", fontSize), 20, screenHeight - 50, 10, DARKGRAY); in main()
113 …mat("Text size: [%02.02f, %02.02f]", textSize.x, textSize.y), 20, screenHeight - 30, 10, DARKGRAY); in main()
H A Dtext_font_sdf.c120 DrawText("FONT SIZE: 16.0", GetScreenWidth() - 240, 20, 20, DARKGRAY); in main()
121 … DrawText(TextFormat("RENDER SIZE: %02.02f", fontSize), GetScreenWidth() - 240, 50, 20, DARKGRAY); in main()
122 DrawText("Use MOUSE WHEEL to SCALE TEXT!", GetScreenWidth() - 240, 90, 10, DARKGRAY); in main()
H A Dtext_input_box.c88 else DrawRectangleLines(textBox.x, textBox.y, textBox.width, textBox.height, DARKGRAY); in main()
92 … DrawText(TextFormat("INPUT CHARS: %i/%i", letterCount, MAX_INPUT_CHARS), 315, 250, 20, DARKGRAY); in main()
H A Dtext_raylib_fonts.c83 DrawText("free fonts included with raylib", 250, 20, 20, DARKGRAY); in main()
84 DrawLine(220, 50, 590, 50, DARKGRAY); in main()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/common/settings/
H A Dbuiltin_color_themes.h187 { LAYER_SCHEMATIC_GRID, COLOR4D( DARKGRAY ) },
220 { LAYER_NEGATIVE_OBJECTS, COLOR4D( DARKGRAY ) },
231 { LAYER_GRID, COLOR4D( DARKGRAY ) },
252 { In7_Cu, COLOR4D( DARKGRAY ) },
268 { In23_Cu, COLOR4D( DARKGRAY ) },
292 { B_CrtYd, COLOR4D( DARKGRAY ) },
295 { F_Fab, COLOR4D( DARKGRAY ) },
/dports/devel/z88dk/z88dk/libsrc/target/excali64/stdio/
H A Dconio_map_colour.asm47 defb $c ;DARKGRAY -> 12 (a very, very dark purple)
65 defb $e ;DARKGRAY -> DARK GREY
83 defb $7 ;DARKGRAY -> WHITE
/dports/games/stonesoup/crawl-0.27.1/crawl-ref/source/rltiles/tool/
H A Dtile_colour.h15 DARKGRAY, enumerator
16 DARKGREY = DARKGRAY,
/dports/games/nlarn/nlarn-NLarn-0.7.6/src/
H A Dpotions.c78 { "clotted", DARKGRAY, },
82 { "murky", DARKGRAY, },
84 { "dark", DARKGRAY, },
85 { "turbid", DARKGRAY, },
89 { "coagulated", DARKGRAY, },
99 { "black", DARKGRAY, },
463 player_memory_of(p, pos).item_colour = DARKGRAY; in potion_detect_item()
/dports/games/SRB2/SRB2-SRB2_release_2.2.9/tools/masterserver/
H A Dcommon.h92 #define DARKGRAY FOREGROUND_INTENSITY macro
112 #define DARKGRAY "\033[1;30m" macro

12345678